aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
Commit message (Expand)AuthorAgeFilesLines
* Use the type object for type casting HStore columnsSean Griffin2014-07-033-55/+34
* Quote range strings when quoting PG rangesSean Griffin2014-07-021-1/+1
* Fix SQL injection when querying against ranges and bitstringsRafael Mendonça França2014-07-021-3/+4
* Merge pull request #15977 from sgrif/sg-remove-array-hackGodfrey Chan2014-06-291-24/+0
|\
| * Remove array workaround in PG quotingSean Griffin2014-06-291-24/+0
* | Remove unused `array_member` from PG quoting for HStore columnsSean Griffin2014-06-292-12/+9
|/
* Use the type object when sending point columns to the DBSean Griffin2014-06-293-19/+9
* Use the type object for sending JSON to the databaseSean Griffin2014-06-293-22/+10
* Always pass a column with a type object to quoteSean Griffin2014-06-281-0/+8
* rename sequence only if it existsAbdelkader Boudih2014-06-271-3/+3
* fk: review corrections: indent, visibility, syntax, wording.Yves Senn2014-06-261-12/+12
* fk: support for on_updateYves Senn2014-06-261-7/+12
* fk: rename `dependent` to `on_delete`Yves Senn2014-06-261-2/+2
* fk: support dependent option (:delete, :nullify and :restrict).Yves Senn2014-06-261-1/+8
* fk: generalize using `AlterTable` and `SchemaCreation`.Yves Senn2014-06-261-20/+0
* fk: `foreign_keys`, `add_foreign_key` and `remove_foreign_key` for MySQLYves Senn2014-06-262-21/+0
* fk: add `foreign_keys` for PostgreSQL adapter.Yves Senn2014-06-262-0/+38
* fk: `add_foreign_key` and `remove_foreign_key` for PostgreSQL adapter.Yves Senn2014-06-261-0/+27
* add missing `:nodoc:` for recent refactorings. [ci skip]Yves Senn2014-06-2423-23/+23
* Don't use column object for type casting in `quoting`Sean Griffin2014-06-181-2/+2
* Detect in-place changes on point typesSean Griffin2014-06-172-3/+20
* Detect mutations of arrays and array membersSean Griffin2014-06-171-12/+14
* Ensure `OID::Array#type_cast_for_database` matches PG's quoting behaviorSean Griffin2014-06-172-7/+21
* Merge pull request #15778 from sgrif/sg-pg-mutable-arraysMatthew Draper2014-06-183-38/+52
|\
| * Move array database type casting to the Array typeSean Griffin2014-06-173-38/+52
* | Don't assume that Hstore columns have always changedSean Griffin2014-06-171-1/+1
|/
* Merge pull request #15674 from sgrif/sg-mutable-attributesMatthew Draper2014-06-142-8/+4
|\
| * Detect in-place changes on mutable AR attributesSean Griffin2014-06-132-8/+4
* | Merge pull request #15593 from sgrif/sg-attributeRafael Mendonça França2014-06-131-2/+3
|\ \
| * | Introduce an Attribute object to handle the type casting danceSean Griffin2014-06-131-2/+3
| |/
* / PG arrays should type cast user inputSean Griffin2014-06-131-4/+8
|/
* Inline PG array type casting helperSean Griffin2014-06-103-34/+28
* Rename `type_cast` to `type_cast_from_database`Sean Griffin2014-06-094-12/+12
* Make `_before_type_cast` actually be before type castSean Griffin2014-06-092-2/+10
* Don't mess with `_before_type_cast` for numeric typesSean Griffin2014-06-061-2/+1
* Merge pull request #15503 from sgrif/sg-json-hstore-storageYves Senn2014-06-062-12/+0
|\
| * Bring type casting behavior of hstore/json in line with serializedSean Griffin2014-06-042-12/+0
* | Fix behavior of handling BC era dates.edogawaconan2014-06-052-3/+5
|/
* Merge pull request #15486 from sgrif/sg-binary-quotingMatthew Draper2014-06-041-10/+21
|\
| * Refactor quoting of binary data to not be based on the column typeSean Griffin2014-06-031-10/+21
* | pg, preserve money type when dumping schema and extract money default.Yves Senn2014-06-032-0/+8
* | Respect limit for PG bit stringsSean Griffin2014-06-031-19/+19
* | pg, preserve type when schema dumping bit and bit varying columns.Yves Senn2014-06-034-1/+27
|/
* pg, preserve point type when schema dumping.Yves Senn2014-06-032-1/+9
* pg, inline casting methods into `OID::Type` objects.Yves Senn2014-06-024-44/+25
* refactor, introduce `Type#type_cast_for_schema` to cast for schema.rbYves Senn2014-05-302-0/+15
* pg, support default values for enum types. Closes #7814.Yves Senn2014-05-301-1/+1
* pg, `default_sequence_name` respects schema. Closes #7516.Yves Senn2014-05-301-2/+2
* Merge pull request #11896 from nkondratyev/fix_pg_columns_for_distinctYves Senn2014-05-301-1/+1
|\
| * Fixed `columns_for_distinct` of postgresql adapterNikolay Kondratyev2013-08-151-1/+1