aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Move the methods for schema dumping into `{mysql,postgresql}/schema_dumper.rb`Ryuta Kamizono2015-10-131-43/+2
* Move schema creation class into `mysql/schema_creation.rb`Ryuta Kamizono2015-10-111-53/+2
* Move schema definition classes into `mysql/schema_definitions.rb`Ryuta Kamizono2015-10-111-62/+5
* Remove unused `pk_and_sequence_for` in AbstractMysqlAdapterRyuta Kamizono2015-10-081-7/+0
* Wrong usage of 'a' in docs fixed [ci skip]Mehmet Emin İNAÇ2015-10-031-1/+1
* introduce `conn.data_source_exists?` and `conn.data_sources`.Yves Senn2015-09-221-0/+2
* Refactor `table_exists?` in AbstractMysqlAdapterRyuta Kamizono2015-09-201-18/+9
* Merge pull request #17696 from kamipo/unsigned_integer_supportJeremy Daer2015-09-191-4/+49
|\
| * Add `unsigned` types for numeric data types in MySQLRyuta Kamizono2015-09-181-0/+21
| * Add `unsigned` support for numeric data types in MySQLRyuta Kamizono2015-09-181-4/+28
* | Merge pull request #19086 from kamipo/move_explain_into_abstract_mysql_adapterJeremy Daer2015-09-191-0/+78
|\ \
| * | Move `explain` into `AbstractMysqlAdapter`Ryuta Kamizono2015-03-011-0/+78
* | | Merge pull request #20645 from kamipo/fix_mysql_set_type_bugJeremy Daer2015-09-191-1/+6
|\ \ \
| * | | Fix infinite loop and lookup miss when `SET` type includes other typesRyuta Kamizono2015-06-201-1/+6
* | | | Merge pull request #21589 from kamipo/eliminate_duplicated_visit_table_defini...Jeremy Daer2015-09-191-14/+0
|\ \ \ \
| * | | | Eliminate the duplication code of `visit_TableDefinition`Ryuta Kamizono2015-09-161-13/+0
| | |_|/ | |/| |
* | | | Merge pull request #21609 from kamipo/do_not_dump_view_as_tableJeremy Daer2015-09-191-0/+16
|\ \ \ \
| * | | | Add `#views` and `#view_exists?` methods on connection adaptersRyuta Kamizono2015-09-131-0/+16
| |/ / /
* | | | Merge pull request #21607 from kamipo/remove_unnecessary_display_widthJeremy Daer2015-09-191-2/+3
|\ \ \ \
| * | | | Remove unnecessary display widthRyuta Kamizono2015-09-161-2/+3
| |/ / /
* | | | Merge pull request #21664 from kamipo/reduce_call_create_table_infoJeremy Daer2015-09-191-2/+7
|\ \ \ \
| * | | | Reduce the calling `create_table_info` queryRyuta Kamizono2015-09-181-2/+7
* | | | | Correctly dump composite primary keyRyuta Kamizono2015-09-201-12/+17
| |/ / / |/| | |
* | | | Merge pull request #21591 from kamipo/text_and_blob_limit_is_byte_lengthRafael Mendonça França2015-09-131-2/+2
|\ \ \ \
| * | | | TEXT and BLOB limit is byte length, not character length.Ryuta Kamizono2015-09-111-2/+2
| |/ / /
* / / / Updated MySQL documentation link to MySQL latest version 5.7 everywhere [ci s...amitkumarsuroliya2015-09-101-2/+2
|/ / /
* | | No need to get the exception variableRafael Mendonça França2015-09-011-6/+4
* | | Merge pull request #21318 from yahonda/pr21108Rafael Mendonça França2015-09-011-2/+6
|\ \ \
| * | | Support MySQL 5.7.8 which enables show_compatibility_56=offYasuo Honda2015-08-211-2/+6
* | | | JSON is still an adapter specific type.Sean Griffin2015-08-211-1/+1
|/ / /
* | | Add a native JSON data type support in MySQLRyuta Kamizono2015-08-181-11/+28
* | | Ensure that microsecond precision is only used for version of mysql that supp...Jori Hardman2015-07-201-5/+13
* | | Add reversible syntax for change_column_defaultPrem Sichanugrist2015-06-261-1/+2
|/ /
* | If specify `strict: :default` explicitly, do not set sql_mode.Ryuta Kamizono2015-05-261-2/+4
* | Remove `require 'arel/visitors/bind_visitor'`Ryuta Kamizono2015-05-191-1/+0
* | Divide methods for handling column options separatelyRyuta Kamizono2015-05-181-6/+10
* | Refactor abstract_mysql_adapter type_to_sql methodMehmet Emin İNAÇ2015-05-131-21/+33
* | Merge pull request #20047 from mcfiredrill/make-subquery-for-privateRafael Mendonça França2015-05-061-13/+13
|\ \
| * | make AbstractAdapter#subquery_for privateTony Miller2015-05-061-13/+13
* | | More exercise the create index sql testsRyuta Kamizono2015-05-041-2/+3
* | | Do not use options that does not supportRyuta Kamizono2015-05-041-4/+4
* | | Merge pull request #17569 from kamipo/dump_table_optionsRafael Mendonça França2015-05-031-0/+10
|\ \ \
| * | | Correctly dump `:options` on `create_table` for MySQLRyuta Kamizono2015-05-031-0/+10
* | | | Merge pull request #19978 from kamipo/collation_option_support_for_postgresqlRafael Mendonça França2015-05-031-20/+17
|\ \ \ \
| * | | | Move the collation handling code from the MySQL adapter to common classesRyuta Kamizono2015-05-041-20/+17
| | |/ / | |/| |
* / | | Change the `visit_AddColumn` visiblity for the internal APIRyuta Kamizono2015-05-031-5/+5
|/ / /
* / / :nodoc: change_column_null in the implmenting adaptersTony Miller2015-05-031-1/+1
|/ /
* | Merge pull request #17574 from kamipo/charset_collation_optionsJeremy Kemper2015-04-071-0/+38
|\ \
| * | Add `:charset` and `:collation` options support for MySQL string and text col...Ryuta Kamizono2015-03-061-0/+38
* | | No need to document drop_table in the PostgreSQLAdapterRafael Mendonça França2015-04-061-0/+4