aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in PostresSQLAdapter's documentationSebastian Staudt2015-01-101-1/+1
* Prefer `array?` rather than `array`Ryuta Kamizono2015-01-041-1/+1
* Add default value for `create_table_definition`Ryuta Kamizono2015-01-031-1/+1
* Improve a dump of the primary key support.Ryuta Kamizono2014-12-291-0/+15
* Correctly handle limit on int4 and int8 types in PGSean Griffin2014-12-221-2/+2
* Correctly respect subtypes for PG arrays and rangesSean Griffin2014-12-051-3/+6
* no need to pass native_database_types aroundYves Senn2014-12-021-1/+1
* Fix value extracted from negative integers for PostgreSQL.Guo Xiang Tan2014-12-011-1/+1
* Wrap code snippets in +, not backticks, in sdocclaudiob2014-11-201-2/+2
* Revert "PERF: optimise type lookup to avoid invoking procs"Sean Griffin2014-11-191-13/+7
* PERF: optimise type lookup to avoid invoking procsSam2014-11-171-7/+13
* exec_prepared is GVL friendly, so lets use it.Aaron Patterson2014-11-131-4/+2
* Added SchemaDumper support for tables with jsonb columns.Ted O'Meara2014-11-041-0/+1
* Correctly cast calculation results on PGSean Griffin2014-11-011-0/+10
* Remove redundant `to_s` in interpolationclaudiob2014-10-301-2/+2
* add bigserial pk supportAaron Patterson2014-10-291-0/+1
* Remove duplicate 'select' database statementclaudiob2014-10-201-6/+0
* add table.bigint supportAaron Patterson2014-10-151-0/+1
* add a truncate method to the connectionAaron Patterson2014-09-221-0/+4
* introduce `connection.supports_views?` and basic view tests.Yves Senn2014-09-091-0/+4
* Freeze ADAPTER_NAME in adaptersAbdelkader Boudih2014-09-051-6/+1
* Add support for Postgresql JSONBPhilippe Creux2014-07-241-0/+1
* Don't rely on the sql type to quote XML columns in PGSean Griffin2014-07-061-1/+1
* Fix SQL injection when querying against ranges and bitstringsRafael Mendonça França2014-07-021-1/+1
* Always pass a column with a type object to quoteSean Griffin2014-06-281-0/+5
* fk: `add_foreign_key` and `remove_foreign_key` for PostgreSQL adapter.Yves Senn2014-06-261-0/+4
* Encapsulate knowledge of type objects on `ActiveRecord::Result`Sean Griffin2014-06-221-3/+2
* this method is no longer being usedJosh Sharpe2014-06-191-4/+0
* Rename `type_cast` to `type_cast_from_database`Sean Griffin2014-06-091-2/+2
* Remove optimization that was required with whiny nilsSean Griffin2014-06-051-8/+0
* Collapse PG default extractoin of most types to single regexSean Griffin2014-06-041-48/+6
* pg, preserve money type when dumping schema and extract money default.Yves Senn2014-06-031-0/+3
* Respect limit for PG bit stringsSean Griffin2014-06-031-5/+5
* pg, preserve type when schema dumping bit and bit varying columns.Yves Senn2014-06-031-2/+4
* pg, preserve point type when schema dumping.Yves Senn2014-06-031-1/+2
* pg, support default values for enum types. Closes #7814.Yves Senn2014-05-301-1/+8
* Deprecate decimal columns being automatically treated as integersSean Griffin2014-05-271-0/+2
* pg, add missing `:nodoc:` to adapter.Yves Senn2014-05-261-8/+8
* pg, remove unused code. Use `extract_schema_and_table` instead.Yves Senn2014-05-261-10/+0
* pg, extract schema definitions into separate file.Yves Senn2014-05-241-135/+3
* Remove special case in schema dumper for decimal without scaleSean Griffin2014-05-231-25/+15
* Move parsing of PG sql strings for defaults out of columnSean Griffin2014-05-231-0/+71
* Push limit to type objectsSean Griffin2014-05-221-2/+10
* Push precision to type objectsSean Griffin2014-05-221-3/+15
* Push scale to type objectsSean Griffin2014-05-221-1/+5
* Move `extract_precision` onto type objectsDan Croak and Sean Griffin2014-05-221-1/+1
* Merge pull request #15249 from sgrif/sg-register-types-in-adapterRafael Mendonça França2014-05-221-2/+49
|\
| * Use the generic type map for all PG type registrationsSean Griffin2014-05-221-2/+49
* | Allow additional arguments to be used during type map lookupsSean Griffin2014-05-221-2/+2
|/
* Use the generic type map for PostgreSQL OID registrationsSean Griffin2014-05-201-3/+20