aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #35242 from eileencodes/add-setter-and-deprecation-for-con...Eileen M. Uchitelle2019-02-142-43/+117
|\
| * Improve errors and handling of hashes for database configurationseileencodes2019-02-142-43/+117
* | Revert "Chaining named scope is no longer leaking to class level querying met...Ryuta Kamizono2019-02-143-6/+4
* | Merge pull request #35244 from palkan/fix/activerecord-database-uri-resolveEileen M. Uchitelle2019-02-131-0/+10
|\ \
| * | Fix database configurations building when DATABASE_URL presentVladimir Dementyev2019-02-121-0/+10
* | | Revert "Merge pull request #35127 from bogdan/counter-cache-loading"Ryuta Kamizono2019-02-131-36/+14
|/ /
* | Merge pull request #35237 from eileencodes/fix-teardown-in-db-selector-testEileen M. Uchitelle2019-02-121-0/+4
|\ \
| * | Fix DatabaseSelector test that fails sometimeseileencodes2019-02-121-0/+4
| |/
* / Fix `pluck` and `select` with custom attributesRyuta Kamizono2019-02-138-7/+31
|/
* Add `remove_foreign_key` for `change_table`Ryuta Kamizono2019-02-111-0/+11
* SQLite3: Implement `add_foreign_key` and `remove_foreign_key`Ryuta Kamizono2019-02-114-15/+47
* More exercise table name prefix and suffix testsRyuta Kamizono2019-02-111-25/+81
* Fix random CI failure due to non-deterministic sorting orderRyuta Kamizono2019-02-101-3/+3
* Merge pull request #35203 from chiastolite/add_column_without_column_namesRyuta Kamizono2019-02-101-0/+11
|\
| * Do not allow to add column without column nameHiroyuki Morita2019-02-101-0/+9
|/
* Merge pull request #35193 from kamipo/fix_exists_with_distinct_and_offsetRyuta Kamizono2019-02-081-0/+10
|\
| * Fix `relation.exists?` with giving both `distinct` and `offset`Ryuta Kamizono2019-02-081-0/+10
* | Merge pull request #35178 from bogdan/has-many-sizeRyuta Kamizono2019-02-081-0/+15
|\ \ | |/ |/|
| * Bugfix has_many association #size when ids reader is cached and association i...Bogdan Gusiev2019-02-081-0/+15
* | Address `test_belongs_to_does_not_use_order_by` failure due to checking order...Yasuo Honda2019-02-082-3/+4
* | Fix `relation.create` to avoid leaking scope to initialization block and call...Ryuta Kamizono2019-02-073-4/+24
* | Fix `CollectionProxy#concat` to return self by alias it to `#<<`Yuya Tanaka2019-02-062-2/+4
* | Relation no longer respond to Arel methodsRyuta Kamizono2019-02-062-18/+7
* | Merge pull request #32380 from kamipo/fix_leaking_scopeRyuta Kamizono2019-02-062-0/+17
|\ \
| * | Chaining named scope is no longer leaking to class level querying methodsRyuta Kamizono2019-02-062-0/+17
| |/
* / Respect ENV variables when finding DBs etc for the test suiteMatthew Draper2019-02-061-0/+6
|/
* Merge pull request #35127 from bogdan/counter-cache-loadingRyuta Kamizono2019-02-051-5/+35
|\
| * Bugfix association loading behavior when counter cache is zeroBogdan Gusiev2019-02-051-5/+35
* | Merge pull request #35089 from eileencodes/fix-query-cache-for-database-switc...Eileen M. Uchitelle2019-02-041-0/+38
|\ \
| * | Invalidate query cache for all connections in the current threadEileen Uchitelle2019-02-011-0/+38
* | | Merge pull request #35132 from eileencodes/allow-application-to-change-handle...Eileen M. Uchitelle2019-02-043-0/+48
|\ \ \
| * | | Add ability to change the names of the default handlersEileen Uchitelle2019-02-013-0/+48
| |/ /
* | | Merge pull request #35130 from rails/move-delay-to-options-argumentEileen M. Uchitelle2019-02-011-0/+48
|\ \ \
| * | | Refactor options for middlewareEileen Uchitelle2019-02-011-0/+48
| |/ /
* | | Merge pull request #35082 from Shopify/eagerly-materialize-test-transactionsRafael França2019-02-011-1/+1
|\ \ \ | |/ / |/| |
| * | Eagerly materialize the fixtures transactionJean Boussier2019-01-291-1/+1
* | | Revert "Merge pull request #33729 from kddeisz/plural-automatic-inverse"Ryuta Kamizono2019-02-011-12/+0
* | | Add regression test for has_many through record creationRyuta Kamizono2019-02-012-0/+6
* | | Write update_last_write_timestamp after requestJohn Hawthorn2019-01-301-0/+37
* | | Merge pull request #35073 from eileencodes/db-selectionEileen M. Uchitelle2019-01-301-0/+77
|\ \ \
| * | | Adds basic automatic database switching to RailsEileen Uchitelle2019-01-301-0/+77
| |/ /
* | | Merge pull request #35102 from eileencodes/fix-case-when-url-in-url-config-is...Eileen M. Uchitelle2019-01-301-0/+8
|\ \ \
| * | | Fix case when we want a UrlConfig but the URL is nilEileen Uchitelle2019-01-301-0/+8
| |/ /
* / / Remove unused codebogdanvlviv2019-01-301-8/+0
|/ /
* | Allow changing text and blob size without giving the `limit` optionRyuta Kamizono2019-01-293-9/+35
* | PostgreSQL: Use native timestamp decoders of pg-1.1Lars Kanis2019-01-261-3/+3
* | Make `t.timestamps` with precision by defaultRyuta Kamizono2019-01-263-10/+124
* | Fix `t.timestamps` missing `null: false` in `change_table bulk: true`Ryuta Kamizono2019-01-262-0/+32
* | Allow `column_exists?` giving options without typeRyuta Kamizono2019-01-262-12/+12
* | Merge pull request #35042 from eileencodes/fix-error-message-for-missing-handlerEileen M. Uchitelle2019-01-252-3/+11
|\ \