aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | Should use `server_info[:version]` instead of `info[:version]`Ryuta Kamizono2015-08-041-1/+1
| |_|_|/ / / |/| | | | |
* | | | | | Fixes documentation typo.Дмитро Будник2015-07-231-2/+2
* | | | | | Ensure that microsecond precision is only used for version of mysql that supp...Jori Hardman2015-07-203-17/+25
* | | | | | Freeze string literals when not mutated.schneems2015-07-191-1/+1
* | | | | | Revert "Revert "Reduce allocations when running AR callbacks.""Guo Xiang Tan2015-07-161-2/+2
* | | | | | Merge pull request #20699 from vngrs/foreign_key_with_table_name_suffix_and_p...Rafael Mendonça França2015-06-271-1/+4
|\ \ \ \ \ \
| * | | | | | Add table name prefix and suffix support to add_foreign_key and remove_foreig...Mehmet Emin İNAÇ2015-06-251-1/+4
| | |/ / / / | |/| | | |
* / | | | | Add reversible syntax for change_column_defaultPrem Sichanugrist2015-06-265-6/+24
|/ / / / /
* | | | | make `remove_index :table, :column` reversible.Yves Senn2015-06-151-1/+1
* | | | | Merge pull request #20226 from EpicH0liday/reversible-remove-foreign-keyYves Senn2015-06-121-1/+5
|\ \ \ \ \
| * | | | | Add an invert method for remove_foreign_keyAster Ryan2015-06-111-1/+6
|/ / / / /
* / / / / Correctly handle array columns with defaults in the schema dumperSean Griffin2015-06-111-0/+5
|/ / / /
* | | | Merge pull request #20448 from sgrif/sg-postgresql-point-typeSean Griffin2015-06-073-0/+53
|\ \ \ \
| * | | | Return a `Point` object from the PG Point typeSean Griffin2015-06-053-0/+53
* | | | | A few documentation tweaks [ci skip]Robin Dupret2015-06-071-1/+1
|/ / / /
* | | | Fixed typos in guidemanish-shrivastava2015-06-011-1/+1
* | | | Add collation support for string and text columns in SQLite3Akshay Vishnoi2015-05-282-4/+66
* | | | If specify `strict: :default` explicitly, do not set sql_mode.Ryuta Kamizono2015-05-261-2/+4
* | | | Updated postgresql documentation link to use latest version [ci skip]Ronak Jangir2015-05-202-5/+5
* | | | Remove unused already requireRyuta Kamizono2015-05-192-7/+0
* | | | Remove `require 'arel/visitors/bind_visitor'`Ryuta Kamizono2015-05-193-4/+0
* | | | Merge pull request #20212 from kamipo/avoid_heredocRafael Mendonça França2015-05-191-20/+5
|\ \ \ \
| * | | | Avoid the heredoc in one line queries and simple queriesRyuta Kamizono2015-05-191-20/+5
* | | | | Eliminate the duplication code of `StatementPool`Ryuta Kamizono2015-05-194-92/+36
|/ / / /
* | | | Merge pull request #20175 from eugeneius/copy_schema_cache_after_forkRafael Mendonça França2015-05-181-1/+3
|\ \ \ \
| * | | | Add schema cache to new connection pool after forkEugene Kenny2015-05-171-1/+3
* | | | | Merge pull request #20192 from kamipo/divide_to_column_options_handling_methodsRafael Mendonça França2015-05-182-10/+34
|\ \ \ \ \
| * | | | | Divide methods for handling column options separatelyRyuta Kamizono2015-05-182-10/+34
| |/ / / /
* | | | | Merge pull request #20190 from kamipo/fix_serial_with_quoted_sequence_nameRafael Mendonça França2015-05-181-1/+2
|\ \ \ \ \
| * | | | | Fix `serial?` with quoted sequence nameRyuta Kamizono2015-05-181-1/+2
| |/ / / /
* / / / / better `add_reference` documentation. [ci skip]Yves Senn2015-05-182-20/+18
|/ / / /
* | | | Merge pull request #14938 from thedarkone/pool-lock-fixMatthew Draper2015-05-162-85/+406
|\ \ \ \
| * | | | AR::ConPool - remove synchronization around connection cache.thedarkone2015-05-141-79/+303
| * | | | AR::ConPool - establish connections outside of critical section.thedarkone2015-05-141-27/+101
| * | | | AR::ConPool - reduce post checkout critical section.thedarkone2015-05-142-13/+35
* | | | | Remove redundant require 'set' linesMehmet Emin İNAÇ2015-05-152-2/+0
|/ / / /
* | | | :nodoc: postgresql add_columnTony Miller2015-05-131-3/+1
* | | | Refactor abstract_mysql_adapter type_to_sql methodMehmet Emin İNAÇ2015-05-131-21/+33
* | | | :nodoc: rename_column in postgresql/schema_statements.rbTony Miller2015-05-081-1/+1
* | | | 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
* | | | | Merge pull request #20025 from kamipo/dont_use_exec_query_for_performanceMatthew Draper2015-05-052-22/+17
|\ \ \ \ \
| * | | | | Use `select_value` for avoid `ActiveRecord::Result` instance creatingRyuta Kamizono2015-05-052-22/+17
* | | | | | Merge pull request #20024 from kamipo/use_select_rows_instead_of_select_one_i...Matthew Draper2015-05-051-2/+3
|\ \ \ \ \ \
| * | | | | | Use `select_rows` instead of `select_one` in `select_value`Ryuta Kamizono2015-05-051-2/+3
| |/ / / / /
* | | | | | Merge pull request #17632 from eugeneius/schema_cache_dump_connection_poolAaron Patterson2015-05-042-2/+12
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Apply schema cache dump when creating connectionsEugene Kenny2015-04-292-2/+12
* | | | | | More exercise the create index sql testsRyuta Kamizono2015-05-042-4/+5
* | | | | | 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-032-0/+14
|\ \ \ \ \ \