aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters
Commit message (Expand)AuthorAgeFilesLines
* use `assert_not` instead of `refute` as mentioned in our guides.Yves Senn2015-08-132-2/+2
* Remove @connection instance variable only when definedYasuo Honda2015-07-261-2/+2
* Remove ivar only when definedAkira Matsuda2015-07-241-2/+2
* Ensure that microsecond precision is only used for version of mysql that supp...Jori Hardman2015-07-202-0/+35
* Display decimal defaults as strings to keep precisionJohn Gesimondo2015-06-232-1/+6
* make it possible to run AR tests with bin/testYves Senn2015-06-1176-223/+203
* Return a `Point` object from the PG Point typeSean Griffin2015-06-051-11/+108
* Add collation support for string and text columns in SQLite3Akshay Vishnoi2015-05-282-4/+57
* If specify `strict: :default` explicitly, do not set sql_mode.Ryuta Kamizono2015-05-262-0/+18
* More exercise the create index sql testsRyuta Kamizono2015-05-042-0/+74
* Merge pull request #17569 from kamipo/dump_table_optionsRafael Mendonça França2015-05-032-0/+84
|\
| * Correctly dump `:options` on `create_table` for MySQLRyuta Kamizono2015-05-032-0/+84
* | PostgreSQL: `:collation` support for string and text columnsRyuta Kamizono2015-05-041-0/+53
* | Remove unused requireRyuta Kamizono2015-05-032-2/+0
|/
* Use `use_transactional_tests` in Active RecordPrem Sichanugrist2015-04-102-2/+2
* Merge pull request #17574 from kamipo/charset_collation_optionsJeremy Kemper2015-04-072-0/+108
|\
| * Add `:charset` and `:collation` options support for MySQL string and text col...Ryuta Kamizono2015-03-062-0/+108
* | PostgreSQL, Fix OID based type casts in C for primitive types.Lars Kanis2015-03-254-13/+13
* | PostgreSQL, Add test case for "Infinity" string assignment to float columns.Lars Kanis2015-03-221-0/+9
* | Don't cast nil to string in pg enumsSean Griffin2015-03-191-0/+8
* | Closes rails/rails#18864: Renaming transactional fixtures to transactional testsBrandon Weiss2015-03-1614-14/+14
* | pg, `disable_referential_integrity` only catches AR errors.Yves Senn2015-03-111-1/+23
* | Fix json_testpalkan2015-03-111-0/+1
* | Fix intermittent test failuresSean Griffin2015-03-091-0/+1
* | Fix intermittent test failuresSean Griffin2015-03-091-0/+1
|/
* Remove duplicated testRyuta Kamizono2015-03-041-20/+0
* Correctly dump `serial` and `bigserial`Ryuta Kamizono2015-03-041-0/+60
* Remove unused lineRyuta Kamizono2015-03-031-1/+0
* Add `SchemaMigration.create_table` support any unicode charsets for MySQL.Ryuta Kamizono2015-02-261-2/+2
* rework `disable_referential_integrity` for PostgreSQL.Yves Senn2015-02-241-0/+89
* Should handle array option for `:cast_as`Ryuta Kamizono2015-02-191-0/+7
* Prefer `drop_table if_exists: true` over raw SQLRyuta Kamizono2015-02-1818-22/+22
* prefer `drop_table if_exists: true` over raw SQL.Yves Senn2015-02-1811-11/+11
* `type_cast_from_user` -> `cast`Sean Griffin2015-02-172-5/+5
* `type_cast_for_database` -> `serialize`Sean Griffin2015-02-177-18/+18
* `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-177-25/+25
* Extract `DateTimePrecisionTest`Ryuta Kamizono2015-02-133-271/+0
* pg tests, be clear about the missing type that causes a test skip.Yves Senn2015-02-121-7/+6
* The datetime precision with zero should be dumpedRyuta Kamizono2015-02-111-22/+39
* Refactor microsecond precision to be database agnosticSean Griffin2015-02-104-19/+7
* Fix rounding problem for PostgreSQL timestamp columnRyuta Kamizono2015-02-081-0/+16
* Merge pull request #18602 from kamipo/respect_database_charset_and_collationAndrew White2015-02-081-4/+12
|\
| * Respect the database default charset for `schema_migrations` table.Ryuta Kamizono2015-02-081-4/+12
* | Remove unused lineRyuta Kamizono2015-02-081-1/+0
|/
* rm `Type#number?`Sean Griffin2015-02-0714-19/+0
* Fix test cases for money, bit and bit_varyingMelody2015-02-042-2/+4
* Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 on...Vipul A M2015-02-0320-20/+0
* Remove most type related predicates from `Column`Sean Griffin2015-01-3015-70/+107
* Always convert strings to UTF-8, regardless of column type in SQLiteSean Griffin2015-01-281-1/+1
* Remove Relation#bind_paramsSean Griffin2015-01-277-24/+33