aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
Commit message (Expand)AuthorAgeFilesLines
* Use #inject over #sum to build PG create DB statementGeoff Harcourt2014-09-171-2/+2
* pg, correctly dump foreign keys targeting tables in a different schema.Yves Senn2014-09-171-1/+2
* Move column option handling to new_column_definitionRyuta Kamizono2014-09-031-5/+3
* Avoid using heredoc for user warningsGodfrey Chan2014-08-281-4/+4
* pg, `default_sequence_name` needs to return a string.Yves Senn2014-08-251-2/+2
* CHANGELOG & improvements to #16649Godfrey Chan2014-08-231-2/+2
* Don't trim excess whitespace in pg #columns_for_distinctAgis-2014-08-241-1/+2
* adding the exception RecordNotFound to UUID findJoseLuis Torres2014-08-211-0/+2
* Spelling errorsjbsmith862014-08-141-1/+1
* Remove unused text? predicate method and delegationCarlos Antonio da Silva2014-08-051-4/+0
* Add support for Postgresql JSONBPhilippe Creux2014-07-243-0/+28
* pg, `change_column_default, :table, :column, nil` issues `DROP DEFAULT`.Yves Senn2014-07-241-1/+9
* Treat invalid uuid as nilAbdelkader Boudih2014-07-141-1/+10
* Don't rely on the column SQL type for bit string quotingSean Griffin2014-07-112-13/+33
* Merge pull request #16071 from sgrif/sg-pg-type-castRafael Mendonça França2014-07-081-15/+0
|\
| * Remove PG's definition of `type_cast`Sean Griffin2014-07-061-15/+0
* | Merge pull request #16072 from sgrif/sg-xml-quotingRafael Mendonça França2014-07-083-3/+41
|\ \
| * | Don't rely on the sql type to quote XML columns in PGSean Griffin2014-07-063-3/+41
| |/
* / Remove the `text?` predicate from the type objectsSean Griffin2014-07-061-4/+0
|/
* Use the type object for quoting PG RangesSean Griffin2014-07-054-48/+34
* Merge pull request #16037 from sgrif/sg-money-quotingRafael Mendonça França2014-07-041-7/+0
|\
| * Remove unneccessary special case for money in quotingSean Griffin2014-07-031-7/+0
* | Merge pull request #16036 from sgrif/sg-datetime-infinityRafael Mendonça França2014-07-032-3/+2
|\ \
| * | Do not rely on the column type when quoting infinitySean Griffin2014-07-032-3/+2
| |/
* / 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
|/