aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
...
| * Omit BEGIN/COMMIT statements for empty transactionsEugene Kenny2018-08-131-0/+2
* | Add database configuration to disable advisory locks.Guo Xiang Tan2018-08-221-1/+1
|/
* MySQL: Raise ActiveRecord::InvalidForeignKey for foreign-key constraint viola...George Claghorn2018-07-301-1/+2
* Fix `insert_fixtures_set` to be restored original connection flagsRyuta Kamizono2018-07-191-29/+0
* use set_server_option if possiblepavel2018-07-151-5/+23
* Save a hash allocation in MySQL statement poolEugene Kenny2018-04-231-1/+1
* Allow `primary_key` argument to `empty_insert_statement_value`Yasuo Honda2018-04-201-1/+1
* Fix `#columsn_for_distinct` of MySQL and PostgreSQLkg8m2018-02-271-1/+1
* Remove usage of strip_heredoc in the framework in favor of <<~Rafael Mendonça França2018-02-161-5/+3
* Extract `discard_remaining_results` for mysql2 adapterRyuta Kamizono2018-01-291-3/+1
* Bring back ability to insert zero value on primary key for fixtures (#31795)Ryuta Kamizono2018-01-261-21/+1
* Merge pull request #31422 from Edouard-chin/multistatement-fixturesMatthew Draper2018-01-241-0/+48
|\
| * Allow a 2 bytes margin:Edouard CHIN2018-01-231-1/+2
| * Combine delete and insert statements in the same queryEdouard CHIN2018-01-221-7/+5
| * Build a multi-statement query when inserting fixtures:Edouard CHIN2018-01-221-0/+49
* | `create_database` should not add default charset when `collation` is givenRyuta Kamizono2018-01-151-1/+1
* | Fix Illegal parameter data type bigint for operation 'get_lock' errorIvan Zinovyev2017-12-201-2/+2
* | Remove passing needless empty string `options` in `create_table`Ryuta Kamizono2017-12-201-4/+0
* | Merge pull request #31177 from albertoalmagro/remove-default-mysql-engine-fro...Matthew Draper2017-12-201-1/+1
|\ \
| * | Remove default ENGINE=InnoDB for Mysql2 adapterAlberto Almagro2017-12-111-1/+1
| |/
* | Quote primary key in the subselect generated by mysql2 adapterRyuta Kamizono2017-12-191-1/+2
* | Optimizing information_schema query for `foreign_keys`Hiroyuki Morita2017-12-131-2/+3
|/
* Extract duplicated index column options normalization as `options_for_index_c...Ryuta Kamizono2017-12-031-19/+0
* Refactor `length`, `order`, and `opclass` index options dumpingRyuta Kamizono2017-12-031-1/+1
* Merge pull request #31230 from dinahshi/postgresql_extract_sqlMatthew Draper2017-12-031-25/+11
|\
| * Extract sql fragment generators for alter table from PostgreSQL adapterDinah Shi2017-12-021-25/+11
* | 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