aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid
Commit message (Expand)AuthorAgeFilesLines
* `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-177-8/+8
* Remove an unused option that I didn't mean to commit [ci skip]Sean Griffin2015-02-111-2/+1
* Remove most PG specific type subclassesSean Griffin2015-02-119-74/+14
* Refactor microsecond precision to be database agnosticSean Griffin2015-02-101-9/+0
* Fix rounding problem for PostgreSQL timestamp columnRyuta Kamizono2015-02-081-0/+9
* rm `Type#text?`Sean Griffin2015-02-071-4/+0
* Move non-type objects into the `Type::Helpers` namespaceSean Griffin2015-02-074-4/+4
* Allow a symbol to be passed to `attribute`, in place of a type objectSean Griffin2015-02-062-1/+13
* Don't error when invalid json is assigned to a JSON columnSean Griffin2015-01-211-1/+1
* Time columns should support time zone aware attributesSean Griffin2015-01-151-1/+1
* remove deprecated support for PG ranges with exclusive lower bounds.Yves Senn2015-01-051-10/+1
* PostgreSQL, Fix change detection caused by wrong data for bytea unescaping.Lars Kanis2014-12-291-0/+1
* Correctly ignore `case_sensitive` for UUID uniqueness validationSean Griffin2014-12-261-0/+4
* Relax the UUID regexGodfrey Chan2014-12-181-9/+2
* Revert to 4.1 behavior for casting PG arraysSean Griffin2014-12-081-0/+3
* Correctly respect subtypes for PG arrays and rangesSean Griffin2014-12-051-7/+19
* Remove redundant `to_s` in interpolationclaudiob2014-10-301-3/+3
* let's warn with heredocsXavier Noria2014-10-281-4/+7
* Fix description of OID in TypeMapInitializerPrathamesh Sonpatki2014-10-251-1/+1
* Avoid using heredoc for user warningsGodfrey Chan2014-08-281-4/+4
* 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-241-0/+23
* Treat invalid uuid as nilAbdelkader Boudih2014-07-141-1/+10
* Don't rely on the column SQL type for bit string quotingSean Griffin2014-07-111-0/+26
* Merge pull request #16072 from sgrif/sg-xml-quotingRafael Mendonça França2014-07-081-0/+32
|\
| * Don't rely on the sql type to quote XML columns in PGSean Griffin2014-07-061-0/+32
* | Remove the `text?` predicate from the type objectsSean Griffin2014-07-061-4/+0
|/
* Use the type object for quoting PG RangesSean Griffin2014-07-051-18/+34
* Merge pull request #16036 from sgrif/sg-datetime-infinityRafael Mendonça França2014-07-031-0/+1
|\
| * Do not rely on the column type when quoting infinitySean Griffin2014-07-031-0/+1
* | Use the type object for type casting HStore columnsSean Griffin2014-07-031-2/+34
|/
* Use the type object when sending point columns to the DBSean Griffin2014-06-291-1/+7
* Use the type object for sending JSON to the databaseSean Griffin2014-06-291-2/+10
* add missing `:nodoc:` for recent refactorings. [ci skip]Yves Senn2014-06-2422-22/+22
* Detect in-place changes on point typesSean Griffin2014-06-171-2/+15
* 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
* Move array database type casting to the Array typeSean Griffin2014-06-171-0/+30
* 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-101-4/+26
* Rename `type_cast` to `type_cast_from_database`Sean Griffin2014-06-093-11/+11
* 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
|\