aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Deprecate decimal columns being automatically treated as integersSean Griffin2014-05-272-0/+3
* Add a public API to allow users to specify column typesSean Griffin2014-05-2611-12/+21
* Extract types which don't require additional typecasting to a methodSean Griffin2014-05-261-4/+9
* Refactor the type casting of booleans in MySQLSean Griffin2014-05-262-13/+18
* Remove checks against `column.type` in abstract adapter quotingSean Griffin2014-05-263-34/+21
* Merge pull request #15307 from sgrif/sg-type-cast-for-writeYves Senn2014-05-263-1/+15
|\
| * Add an interface for type objects to control Ruby => SQLSean Griffin2014-05-263-1/+15
* | 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, remove duplicated code.Yves Senn2014-05-241-4/+0
* | pg, extract schema definitions into separate file.Yves Senn2014-05-242-135/+141
|/
* Remove special case in schema dumper for decimal without scaleSean Griffin2014-05-235-35/+32
* Merge pull request #15277 from sgrif/sg-schema-cache-refactorRafael Mendonça França2014-05-231-31/+11
|\
| * Simplify the code in schema cacheSean Griffin2014-05-231-31/+11
* | Merge pull request #15282 from sgrif/sg-remove-column-primaryRafael Mendonça França2014-05-231-2/+1
|\ \
| * | Remove `Column#primary`Sean Griffin2014-05-231-2/+1
| |/
* | Merge pull request #15280 from sgrif/sg-postgres-defaultsRafael Mendonça França2014-05-233-76/+78
|\ \
| * | Move parsing of PG sql strings for defaults out of columnSean Griffin2014-05-233-76/+78
| |/
* / Inline type cast method for PG pointsSean Griffin2014-05-232-8/+4
|/
* Push limit to type objectsSean Griffin2014-05-226-70/+64
* Push precision to type objectsSean Griffin2014-05-226-22/+27
* Push scale to type objectsSean Griffin2014-05-227-20/+27
* Move `extract_precision` onto type objectsDan Croak and Sean Griffin2014-05-227-19/+15
* Merge pull request #15249 from sgrif/sg-register-types-in-adapterRafael Mendonça França2014-05-223-75/+62
|\
| * Use the generic type map for all PG type registrationsSean Griffin2014-05-223-75/+62
* | Allow additional arguments to be used during type map lookupsSean Griffin2014-05-224-12/+12
|/
* Merge pull request #15237 from sgrif/sg-move-extract-scaleRafael Mendonça França2014-05-213-6/+5
|\
| * Move extract_scale to decimal typeSean Griffin2014-05-213-6/+5
* | Merge pull request #15218 from sgrif/sg-move-oid-typesRafael Mendonça França2014-05-2123-353/+532
|\ \
| * | Move PG OID types to their own filesSean Griffin2014-05-2123-353/+532
* | | Rename `oid_type` to `cast_type` to make PG columns consistentSean Griffin2014-05-211-5/+4
| |/ |/|
* | Add missing nodocs to MySQL adapterSean Griffin2014-05-211-3/+3
|/
* push `extract_scale` to the `Type`.Yves Senn2014-05-214-7/+9
* Delegate `klass` to the injected type objectSean Griffin2014-05-209-14/+33
* Delegate `type_cast_for_write` to injected type objectSean Griffin2014-05-204-30/+14
* Merge pull request #15207 from sgrif/sg-inline-column-helpersRafael Mendonça França2014-05-208-118/+74
|\
| * Inline typecasting helpers from Column to the appropriate typesSean Griffin2014-05-208-118/+74
* | Merge pull request #15206 from sgrif/sg-type-map-postgresqlRafael Mendonça França2014-05-203-45/+31
|\ \
| * | Use the generic type map for PostgreSQL OID registrationsSean Griffin2014-05-203-45/+31
| |/
* / Delegate predicate methods to injected type object on ColumnSean Griffin2014-05-2011-23/+43
|/
* Use the generic type map object for mysql field lookupsSean Griffin2014-05-203-23/+26
* Merge pull request #15203 from sgrif/sg-delegate-type-castRafael Mendonça França2014-05-206-74/+6
|\
| * Replace `type_cast` case statement with delegationSean Griffin2014-05-206-74/+6
* | Merge pull request #15201 from sgrif/sg-types-postgresqlRafael Mendonça França2014-05-203-147/+81
|\ \
| * | Have Postgres OID types inherit from general typesSean Griffin2014-05-203-147/+81
* | | Use general types for mysql fieldsSean Griffin2014-05-201-69/+11
| |/ |/|
* | Delegate type_cast to injected type object in mysqlSean Griffin2014-05-206-53/+72
|/
* Delegate `#type_cast` to injected type objects on SQLite3Sean Griffin2014-05-2010-6/+82
* Remove :timestamp column typeSean Griffin2014-05-199-21/+11
* Delegate `Column#type` to the injected type objectSean Griffin2014-05-1921-71/+258