aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | When running exec_query MySQL always returns ActiveRecord::ResultAlireza Bashiri2018-11-251-2/+10
|/ / / /
* | | | Raises error when attempting to modify enum valuesebyrds2018-11-231-0/+1
* | | | Merge pull request #34468 from gmcgibbon/redact_sql_in_errorsRafael França2018-11-235-44/+48
|\ \ \ \
| * | | | Redact SQL in errorsGannon McGibbon2018-11-225-44/+48
* | | | | Use squiggly heredoc to strip odd indentation in the executed SQLRyuta Kamizono2018-11-226-22/+22
|/ / / /
* | | | Fixing an issue when parsing an opclass by allowing indexed columnThomas Bianchini2018-11-211-1/+1
* | | | Merge pull request #34491 from rails/fix-query-cache-on-multiple-connectionsEileen M. Uchitelle2018-11-211-4/+11
|\ \ \ \
| * | | | Fix query cache for multiple connectionsEileen Uchitelle2018-11-201-4/+11
* | | | | Make connection handler per thread instead of per fiberEileen Uchitelle2018-11-201-2/+2
|/ / / /
* | | | Merge pull request #33954 from febeling/inconsistent-assignment-has-many-thro...Aaron Patterson2018-11-203-3/+33
|\ \ \ \
| * | | | Optimize difference and intersectionFlorian Ebeling2018-11-061-17/+9
| * | | | Rename union to intersectionFlorian Ebeling2018-11-063-3/+3
| * | | | Fix handling of duplicates for `replace` on has_many-throughFlorian Ebeling2018-11-063-3/+41
* | | | | Merge pull request #34453 from bogdanvlviv/exercise-connected_to-and-connects_toAaron Patterson2018-11-191-1/+1
|\ \ \ \ \
| * | | | | Exercise `connected_to` and `connects_to` methodsbogdanvlviv2018-11-151-1/+1
* | | | | | Fix typo and clarify documentationJacob Evelyn2018-11-161-3/+4
* | | | | | Fix cache_versioning default note (#34466)Gannon McGibbon2018-11-161-1/+1
* | | | | | Arel: Implemented DB-aware NULL-safe comparison (#34451)Dmytro Shteflyuk2018-11-1513-0/+134
|/ / / / /
* | | | | Merge pull request #34437 from kbrock/union_all_parenRafael Mendonça França2018-11-132-32/+19
|\ \ \ \ \
| * | | | | Emit single pair of parens for UNION and UNION ALLKeenan Brock2018-11-132-32/+19
* | | | | | Merge pull request #34436 from gmcgibbon/fix_default_max_bind_length_sqliteRafael França2018-11-131-0/+6
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Adjust bind length of SQLite to default (999)Gannon McGibbon2018-11-131-0/+6
* | | | | | Add support for UNLOGGED Postgresql tablesJacob Evelyn2018-11-134-1/+36
|/ / / / /
* | | | | Remove ensure from with_transaction_returning_statusEugene Kenny2018-11-111-4/+0
* | | | | Deprecate `t.indexes = [...]` which is not by designRyuta Kamizono2018-11-091-2/+5
* | | | | Refactor to initialize `TableDefinition` by kwargsRyuta Kamizono2018-11-092-4/+14
* | | | | PostgreSQL: Properly quote all `Infinity` and `NaN`Ryuta Kamizono2018-11-091-4/+4
* | | | | Add an :if_not_exists option to create_tablefatkodima2018-11-083-4/+10
* | | | | Guard Enums against definitions with blank label namesChristophe Maximin2018-11-071-0/+4
* | | | | Add multi-db support to schema cache dump and clearGannon McGibbon2018-11-072-5/+22
* | | | | Always add records to parent of nested transactionEugene Kenny2018-11-071-1/+1
|/ / / /
* | | | Fix inspect with non-primary key id attributeEugene Kenny2018-11-062-3/+3
* | | | Move `resolve_sti_reflections` which is table row related code into `TableRow`Ryuta Kamizono2018-11-032-89/+78
* | | | Don't pass useless `table_name` to `ModelMetadata.new`Ryuta Kamizono2018-11-033-13/+4
* | | | Don't pass unused `connection` to `FixtureSet.new`Ryuta Kamizono2018-11-031-5/+2
* | | | Checking boundable not only `IN` clause but also `NOT IN` clauseRyuta Kamizono2018-11-033-8/+20
* | | | Updating sample code on ActiveRecord#before_destroy callback [ci skip]Espartaco Palma2018-10-311-1/+1
* | | | Fix "warning: shadowing outer local variable - role"Ryuta Kamizono2018-10-311-9/+13
* | | | Merge pull request #34353 from gmcgibbon/fix_lock_docs_locking_clauseRafael França2018-10-301-3/+3
|\ \ \ \
| * | | | Fix example for database-specific locking clauseGannon McGibbon2018-10-301-3/+3
* | | | | Fix failing testSean Griffin2018-10-301-0/+1
|/ / / /
* | | | `update_columns` raises if the column is unknownSean Griffin2018-10-301-4/+4
* | | | Merge pull request #19388 from yakara-ltd/fix-habtm-fixture-orderRyuta Kamizono2018-10-301-0/+3
|\ \ \ \
| * | | | Avoid violating key constraints in fixture HABTM associationsJames Le Cuirot2018-10-291-0/+3
* | | | | Merge pull request #34196 from gmcgibbon/connection_switch_string_nameEileen M. Uchitelle2018-10-301-6/+9
|\ \ \ \ \
| * | | | | Add support for hash and url configs in connected_toGannon McGibbon2018-10-261-6/+9
* | | | | | Document exception from restrict_with_exception [ci skip]Malcolm Locke2018-10-291-2/+2
| |/ / / / |/| | | |
* | | | | Ignore empty condition on #construct_relation_for_existsr7kamura2018-10-271-1/+1
|/ / / /
* | | | Merge pull request #34208 from yskkin/inspect_with_parameter_filterRyuta Kamizono2018-10-262-27/+33
|\ \ \ \
| * | | | Implement AR#inspect using ParamterFilter.Yoshiyuki Kinjo2018-10-192-27/+33