aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Add new error class `QueryCanceled` which will be raised when canceling state...Ryuta Kamizono2017-11-271-0/+3
* Rename `TransactionTimeout` to more descriptive `LockWaitTimeout` (#31223)Ryuta Kamizono2017-11-271-1/+1
* Merge pull request #30510 from yhirano55/add_nodoc_to_activerecordEileen M. Uchitelle2017-11-251-1/+1
|\
| * Add :nodoc: to activerecord [ci skip]Yoshiyuki Hirano2017-09-031-1/+1
* | Add new error class `StatementTimeout` which will be raised when statement ti...Ryuta Kamizono2017-11-131-0/+3
* | [Active Record] require => require_relativeAkira Matsuda2017-10-211-10/+10
* | Add JSON attribute test cases for SQLite3 adapterRyuta Kamizono2017-10-051-1/+0
* | Prevent extra `column_for` for `change_column_{default,null,comment}`Ryuta Kamizono2017-09-231-7/+4
* | `index_name` should be quotedRyuta Kamizono2017-09-221-1/+1
* | Return nil if table comment is blankRyuta Kamizono2017-09-221-1/+1
* | Implement change_table_comment and change_column_comment for MySql AdapterAlecs Popa2017-09-221-0/+10
|/
* Omit the default limit for float columns (#28041)Ryuta Kamizono2017-08-271-1/+1
* Merge pull request #30337 from kamipo/refactor_schema_dumperRyuta Kamizono2017-08-241-1/+0
|\
| * Refactor `SchemaDumper` to make it possible to adapter specific customizationRyuta Kamizono2017-08-221-1/+0
* | Merge pull request #30360 from gcourtemanche/transaction_timedoutRafael França2017-08-221-0/+3
|\ \ | |/ |/|
| * Add TransactionTimeout for MySQL error code 1205Gabriel Courtemanche2017-08-221-0/+3
* | Update links to use https instead of http [ci skip]Yoshiyuki Hirano2017-08-221-2/+2
|/
* Place `update_table_definition` consistently in `SchemaStatements`Ryuta Kamizono2017-08-211-4/+0
* Restore `to_sql` to return only SQL (#29945)Ryuta Kamizono2017-08-181-2/+1
* Use `predicate_builder.build_bind_attribute` wherever possibleRyuta Kamizono2017-07-281-1/+1
* Fix build failures on MySQLSean Griffin2017-07-241-1/+1
* Refactor Active Record to let Arel manage bind paramsSean Griffin2017-07-241-1/+2
* Merge pull request #29870 from kamipo/use_true_false_literalsSean Griffin2017-07-221-4/+4
|\
| * Use `TRUE` and `FALSE` boolean literals for MySQLRyuta Kamizono2017-07-201-4/+6
* | Merge pull request #29869 from kamipo/make_type_map_to_privateRafael França2017-07-211-1/+1
|\ \
| * | Make `type_map` to private because it is only used in the connection adapterRyuta Kamizono2017-07-201-1/+1
| |/
* / Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
|/
* Fix extracting MariaDB versionRyuta Kamizono2017-07-071-2/+6
* Remove database specific JSON typesRyuta Kamizono2017-07-051-3/+0
* Merge branch 'master' into require_relative_2017Xavier Noria2017-07-021-14/+14
|\
| * Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| * Merge pull request #29540 from kirs/rubocop-frozen-stringMatthew Draper2017-07-021-0/+1
| |\
| | * Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
| * | Merge pull request #29506 from pat/frozen-string-literalsMatthew Draper2017-07-021-4/+4
| |\ \
| | * | Make ActiveRecord frozen string literal friendly.Pat Allan2017-06-201-4/+4
| * | | Don't cache queries for schema statementsRyuta Kamizono2017-06-301-10/+10
| | |/ | |/|
* / | [Active Record] require => require_relativeAkira Matsuda2017-07-011-10/+10
|/ /
* | Use `quote` method rather than single quotes to identifiers in SQLRyuta Kamizono2017-06-291-1/+1
* | Use bulk INSERT to insert fixturesKir Shatrov2017-06-201-0/+17
|/
* Consolidate database specific JSON types to `Type::Json`Ryuta Kamizono2017-05-301-3/+2
* Deserialize a raw value from the database in `changed_in_place?` for `Abstrac...Ryuta Kamizono2017-05-301-5/+0
* Add option for class_attribute default (#29270)David Heinemeier Hansson2017-05-291-2/+1
* Don't pass `arel.engine` to `Arel::SelectManager.new`Ryuta Kamizono2017-05-051-6/+4
* Deprecate `supports_statement_cache?`Ryuta Kamizono2017-05-011-6/+0
* Don't fallback to utf8mb3 after MySQL 8.0.0Ryuta Kamizono2017-04-171-8/+0
* Support Descending Indexes for MySQLRyuta Kamizono2017-04-161-3/+1
* Refactor `indexes` things in connection adaptersRyuta Kamizono2017-04-161-33/+0
* Make internal methods to privateRyuta Kamizono2017-03-271-35/+2
* Merge pull request #28068 from kamipo/refactor_data_sourcesRafael França2017-03-131-67/+12
|\
| * Extract `data_source_sql` to refactor data source statementsRyuta Kamizono2017-02-201-67/+12