aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | Inline type cast method for PG pointsSean Griffin2014-05-232-8/+4
| |/ / / / /
* | | | | | Avoid slowing down AR object initializationGodfrey Chan2014-05-221-0/+1
* | | | | | Fixed serialization for records with an attribute named `format`.Godfrey Chan2014-05-221-0/+2
| |/ / / / |/| | | |
* | | | | Merge pull request #15257 from jetthoughts/remove_redundant_codeRafael Mendonça França2014-05-221-1/+0
|\ \ \ \ \
| * | | | | Removed not-used codePaul Nikitochkin2014-05-221-1/+0
* | | | | | fix test from 7537057888d2d63c3b6c2019d5828bc445fbd6c9Aaron Patterson2014-05-221-0/+1
| |/ / / / |/| | | |
* | | | | 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 #14803 from kuldeepaggarwal/null_relation_sum_fixMatthew Draper2014-05-221-3/+17
|\ \ \ \
| * | | | Fixed a problem where `sum`, `size`, `average`, `minimum` and `maximum` usedKuldeep Aggarwal2014-05-151-3/+17
* | | | | 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
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #15219 from sgrif/sg-missing-nodocRafael Mendonça França2014-05-211-3/+3
|\ \ \ \ \ \
| * | | | | | Add missing nodocs to MySQL adapterSean Griffin2014-05-211-3/+3
| |/ / / / /
* | | | | | Merge pull request #14613 from Sirupsen/fix-serialize-update-columnRafael Mendonça França2014-05-212-14/+30
|\ \ \ \ \ \
| * | | | | | Fix serialized field returning serialized data after update_columnSimon Eskildsen2014-04-052-14/+30
* | | | | | | Revert "Merge pull request #14544 from jefflai2/named_scope_sti"Rafael Mendonça França2014-05-212-8/+4
| |/ / / / / |/| | | | |
* | | | | | push `extract_scale` to the `Type`.Yves Senn2014-05-214-7/+9
* | | | | | Merge pull request #14855 from laurocaetano/fix_polymorphic_with_string_keyYves Senn2014-05-211-4/+25
|\ \ \ \ \ \
| * | | | | | Fix polymorphic eager load with foreign_key as String.Lauro Caetano2014-05-201-2/+17
|/ / / / / /
* | | | | | Merge pull request #14544 from jefflai2/named_scope_stiRafael Mendonça França2014-05-202-4/+8
|\ \ \ \ \ \
| * | | | | | Fixes Issue #13466.Jefferson Lai2014-04-232-4/+8
* | | | | | | Merge pull request #15205 from sgrif/sg-delegate-klassRafael Mendonça França2014-05-209-14/+33
|\ \ \ \ \ \ \
| * | | | | | | Delegate `klass` to the injected type objectSean Griffin2014-05-209-14/+33
* | | | | | | | Merge pull request #14979 from brocktimus/masterRafael Mendonça França2014-05-201-1/+1
|\ \ \ \ \ \ \ \
| * | | | | | | | Prevented belongs_to: touch propagating up if there are no changes being savedBrock Trappitt2014-05-211-1/+1
| |/ / / / / / /
* / / / / / / / Revert "Revert "Merge pull request #8313 from alan/only_save_changed_has_one_...Rafael Mendonça França2014-05-201-2/+3
|/ / / / / / /
* | | | | | | 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-209-119/+75
|\ \ \ \ \ \ \
| * | | | | | | Inline typecasting helpers from Column to the appropriate typesSean Griffin2014-05-209-119/+75
* | | | | | | | 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
* | | | | | | | | fix multiple hash preloads. Fixes #14994Aaron Patterson2014-05-201-6/+7
* | | | | | | | | 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
|/ / / / / / /
* | | | | | | Merge pull request #15197 from sgrif/sg-delegate-type-cast-sqlite3Yves Senn2014-05-2010-6/+82
|\ \ \ \ \ \ \