aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Use `delegate` to call the methods to `@conn`Ryuta Kamizono2015-02-191-16/+3
* `type_cast_for_database` -> `serialize`Sean Griffin2015-02-171-2/+2
* `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-171-1/+1
* Revert "Allow `:precision` option for time type columns"Sean Griffin2015-02-171-6/+0
* Merge pull request #18662 from estum/foreign-key-existsYves Senn2015-02-162-15/+38
|\
| * Add methods to get foreign key matching argumentsAnton2015-01-292-40/+36
| * Add `foreign_key_exists?` method.Anton2015-01-242-0/+27
* | fix, `to_table` in `remove_foreign_key` should be plural.Yves Senn2015-02-161-1/+1
* | Register adapter specific types with the global type registrySean Griffin2015-02-151-21/+0
* | Allow `:precision` option for time type columnsRyuta Kamizono2015-02-121-0/+6
* | Merge pull request #18888 from kamipo/refactor_quote_default_expressionRafael Mendonça França2015-02-112-6/+6
|\ \
| * | Refactor `quote_default_expression`Ryuta Kamizono2015-02-112-6/+6
* | | Merge pull request #18883 from kamipo/fix_datetime_precision_dumping_zero_for...Sean Griffin2015-02-111-1/+1
|\ \ \
| * | | The datetime precision with zero should be dumpedRyuta Kamizono2015-02-111-1/+1
| |/ /
* | | fix `remove_reference` with `foreign_key: true` on MySQL. #18664.Yves Senn2015-02-111-0/+6
* | | Merge pull request #18890 from kamipo/remove_cast_typeYves Senn2015-02-111-1/+1
|\ \ \
| * | | Remove `cast_type` in `ColumnDefinition`Ryuta Kamizono2015-02-111-1/+1
| |/ /
* / / Use keyword argument in `transaction`Ryuta Kamizono2015-02-111-6/+4
|/ /
* | Refactor microsecond precision to be database agnosticSean Griffin2015-02-102-2/+7
* | An array type is a part of `sql_type`Ryuta Kamizono2015-02-081-1/+1
* | Allow a symbol to be passed to `attribute`, in place of a type objectSean Griffin2015-02-061-0/+21
* | fix transaction rollback in case of aborting threadYuri Smirnov2015-02-051-1/+1
* | rm `Column#cast_type`Sean Griffin2015-02-031-0/+11
* | Generate consistent names for foreign keysChris Sinjakli2015-02-031-1/+5
* | push add to transaction logic down to the instanceAaron Patterson2015-02-012-5/+5
* | stop making calls to add_recordAaron Patterson2015-02-011-1/+1
* | Remove most type related predicates from `Column`Sean Griffin2015-01-301-2/+3
* | Remove most uses of `Column#cast_type`Sean Griffin2015-01-302-3/+27
* | Remove Relation#bind_paramsSean Griffin2015-01-272-10/+4
|/
* TransactionManager should call rollback recordsArthur Neves2015-01-201-5/+5
* Merge pull request #18458 from brainopia/fix_after_commit_for_fixturesJeremy Kemper2015-01-201-4/+11
|\
| * after_commit runs after transactions with non-joinable parentsbrainopia2015-01-161-4/+11
* | Add an `:if_exists` option to `drop_table`Stefan Kanev2015-01-191-1/+1
|/
* Don't default to YAML dumping when quoting valuesSean Griffin2015-01-142-3/+8
* Merge pull request #18478 from yoshiokatsuneo/active_record_connection_pool_e...Sean Griffin2015-01-131-1/+2
|\
| * ActiveRecord: On reconnection failure, release only failed connetion.Yoshioka Tsuneo2015-01-131-1/+2
* | Deprecate passing a column to `quote`Sean Griffin2015-01-101-0/+6
* | Stop passing a column to `quote` when prepared statements are turned offSean Griffin2015-01-101-3/+3
* | Stop passing a column to `quote` in `insert_fixture`Sean Griffin2015-01-102-4/+14
* | Copy records to parent transaction should happen on TransactionManagerArthur Neves2015-01-091-3/+3
* | Use keyword args on committed! and rolledback!Arthur Neves2015-01-091-3/+3
|/
* ActiveRecord: release connection on reconnect failure.Yoshioka Tsuneo2015-01-091-0/+3
* Change transaction callbacks to not swallowing errors.Rafael Mendonça França2015-01-041-12/+2
* Change the default `null` value for `timestamps` to `false`Rafael Mendonça França2015-01-042-17/+5
* Return an array of pools from `connection_pools`Rafael Mendonça França2015-01-041-10/+1
* `sql_type` has been determined already when quoting defaultsRyuta Kamizono2015-01-041-4/+2
* Refactor `visit_ChangeColumnDefinition`Ryuta Kamizono2015-01-031-1/+1
* Add default value for `create_table_definition`Ryuta Kamizono2015-01-031-2/+2
* Merge pull request #17820 from fw42/restore_query_cache_on_rollbackRafael Mendonça França2015-01-023-3/+14
|\
| * Restore query cache on rollbackFlorian Weingarten2014-12-013-3/+14