aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | Make `QUOTED_TRUE` and `QUOTED_FALSE` to public because these are used in `My...Ryuta Kamizono2016-04-061-4/+4
| * | | | Move `quoted_date`, `quote_string` and `quote_table_name_for_assignment` meth...Ryuta Kamizono2016-04-051-12/+0
| * | | | Make to private `QUOTED_TRUE` and `QUOTED_FALSE` constantsRyuta Kamizono2016-04-051-18/+0
* | | | | Remove hard-coded backticks in SQL statementsHarsimran Singh Maan2016-04-051-3/+3
|/ / / /
* | | / Use `QUOTED_TRUE` and `QUOTED_FALSE` instead of magic stringsyui-knk2016-04-051-4/+4
| |_|/ |/| |
* | | Move `@quoted_{column|table}_names` cache up to the abstract adapterRyuta Kamizono2016-03-311-9/+2
* | | Merge pull request #24368 from kamipo/make_to_private_the_visibilitySean Griffin2016-03-301-8/+2
|\ \ \
| * | | Make to private the visibility of `_quote` and `_type_cast`Ryuta Kamizono2016-03-301-8/+2
* | | | Add a test case for create a record with primary key as zeroRyuta Kamizono2016-03-301-0/+1
|/ / /
* | | Append sql_mode instead of overwriting in strict modeRyuta Kamizono2016-03-131-3/+12
* | | Merge pull request #23797 from kamipo/case_sensitive_comparison_for_non_strin...Rafael França2016-03-111-3/+3
|\ \ \
| * | | The BINARY Operator is only needed for string columnsRyuta Kamizono2016-02-221-3/+3
| |/ /
* | | Passing `table_name` to `Column#initialize` to avoid `instance_variable_set`Ryuta Kamizono2016-03-081-5/+3
* | | Initialize `column.table_name` immediately for `column.serial?` correctly wor...Ryuta Kamizono2016-03-081-9/+16
* | | No need to extract a limit for a boolean typeRyuta Kamizono2016-03-041-1/+1
|/ /
* / Remove needless `case_insensitive_comparison` in mysql2 adapterRyuta Kamizono2016-02-171-6/+3
|/
* Active Record supports MySQL >= 5.0Ryuta Kamizono2016-02-041-10/+7
* Avoid extra `show variables` in migrationRyuta Kamizono2016-02-011-7/+5
* Extract `ExplainPrettyPrinter` to appropriate filesRyuta Kamizono2016-02-011-66/+2
* Remove unused `LOST_CONNECTION_ERROR_MESSAGES`Ryuta Kamizono2016-01-311-6/+0
* Remove `limit: 11` as backward-compatibility with Rails 2.0Ryuta Kamizono2016-01-271-1/+0
* Fix extract default with CURRENT_TIMESTUMPRyuta Kamizono2016-01-131-2/+6
* Extract `MySQL::TypeMetadata` class to `connection_adapters/mysql/type_metada...Ryuta Kamizono2016-01-111-28/+2
* Extract `MySQL::Column` class to `connection_adapters/mysql/column.rb`Ryuta Kamizono2016-01-111-46/+2
* Merge pull request #22967 from schneems/schneems/generic-metadataSean Griffin2016-01-081-0/+1
|\
| * [ci skip] Add comment to remove silenced code.schneems2016-01-071-0/+1
* | `{update|delete}_sql` are almost the same as `{update|delete}`Ryuta Kamizono2016-01-081-5/+0
* | Fix `unsigned?` and `blob_or_text_column?` for Enum columns in MySQLRyuta Kamizono2016-01-041-3/+3
* | Refactor `case_{sensitive|insensitive}_comparison`Ryuta Kamizono2016-01-011-9/+4
* | Merge pull request #22241 from kamipo/add_columns_for_distinct_for_mysql57Rafael França2015-12-301-3/+20
|\ \
| * | Add `columns_for_distinct` for MySQL 5.7 with ONLY_FULL_GROUP_BYRyuta Kamizono2015-12-231-0/+15
| * | Avoid `distinct` if a subquery has already materializedRyuta Kamizono2015-12-231-3/+5
* | | Merge pull request #22547 from kamipo/fix_create_table_info_cacheRafael França2015-12-291-2/+6
|\ \ \
| * | | Correctly cache create_table_infoRyuta Kamizono2015-12-171-2/+6
| | |/ | |/|
* | | Fix varbinary with default ''Ryuta Kamizono2015-12-241-13/+0
* | | Merge pull request #22620 from kamipo/join_to_delete_is_same_as_join_to_updateRafael França2015-12-221-1/+1
|\ \ \
| * | | `join_to_delete` is same as `join_to_update`Ryuta Kamizono2015-12-171-1/+1
* | | | Remove legacy mysql adapterRyuta Kamizono2015-12-211-7/+6
* | | | mysql2 adapter instead of mysql [ci skip]Rajarshi Das2015-12-201-2/+2
| |_|/ |/| |
* | | Remove legacy mysql adapterAbdelkader Boudih2015-12-171-3/+0
|/ /
* | Revert "Merge pull request #22615 from kamipo/join_to_delete_is_same_as_join_...Rafael Mendonça França2015-12-171-1/+1
* | `join_to_delete` is same as `join_to_update`Ryuta Kamizono2015-12-171-1/+1
|/
* Refactor `AbstractAdapter#initialize`Ryuta Kamizono2015-11-301-2/+1
* `connection_options` is only needed for `MysqlAdapter`Ryuta Kamizono2015-11-291-1/+1
* Revert "Add prepared statements support for `Mysql2Adapter`"Sean Griffin2015-11-261-45/+3
* Add prepared statements support for `Mysql2Adapter`Ryuta Kamizono2015-11-261-3/+45
* Merge pull request #22214 from kamipo/not_passing_native_database_types_to_ta...Rafael França2015-11-241-1/+1
|\
| * Not passing `native_database_types` to `TableDefinition`Ryuta Kamizono2015-11-081-1/+1
* | `set_field_encoding` is only needed for `MysqlAdapter`Ryuta Kamizono2015-11-241-4/+2
* | Revert "Allow specifying the default table options for mysql adapters"Sean Griffin2015-11-191-2/+1