aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Support for partial inserts.Jon Leighton2012-09-281-1/+1
* Support for specifying transaction isolation levelJon Leighton2012-09-212-15/+75
* rename AR::Model::Tag to AR::Tag - fixes #7714Francesco Rodriguez2012-09-201-3/+3
* Merge pull request #7547 from danmcclain/pg-arraysRafael Mendonça França2012-09-161-0/+56
|\
| * Moves column dump specific code to a module included in AbstractAdapterDan McClain2012-09-141-0/+56
* | simplify rescueJon Leighton2012-09-151-3/+3
* | Fix testJon Leighton2012-09-151-13/+19
* | Remove our use of #outside_transaction?Jon Leighton2012-09-151-32/+8
* | Remove the transaction_open variableJon Leighton2012-09-151-21/+28
* | Move transaction joinability into the transaction objectJon Leighton2012-09-152-14/+21
* | Alter the naming structure a bitJon Leighton2012-09-152-107/+105
* | Split Open into Real and SavepointJon Leighton2012-09-151-25/+38
* | DRYJon Leighton2012-09-151-4/+8
* | Don't do the rollback in #commitJon Leighton2012-09-152-18/+7
* | Store the transaction number in the transaction objectJon Leighton2012-09-152-6/+24
* | Start to tease out transaction handling into a state machineJon Leighton2012-09-152-79/+152
* | Revert "create a transaction object and point AR objects at that object durin...Jon Leighton2012-09-151-5/+3
|/
* warning removed.Arun Agrawal2012-09-121-1/+0
* ConnectionPool, unify exceptions, ConnectionTimeoutErrorJonathan Rochkind2012-09-111-17/+11
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-091-1/+1
|\
| * Fix a typoAndreas Loupasakis2012-09-061-1/+1
* | create a transaction object and point AR objects at that object during aAaron Patterson2012-09-071-3/+5
|/
* Cache the connection pool for a given classJon Leighton2012-08-311-20/+35
* One hash is enoughJon Leighton2012-08-311-17/+13
* Refactor connection handlerJon Leighton2012-08-311-22/+14
* Make connection pool retrieval fasterJon Leighton2012-08-311-10/+13
* use Hash#fetch to eliminate conditionalAaron Patterson2012-08-241-8/+3
* This method is useless without a block, so remove testAaron Patterson2012-08-201-11/+9
* remove unused variableAaron Patterson2012-08-201-1/+1
* initialize instance variables to avoid conditionalsAaron Patterson2012-08-201-2/+7
* load active_support/deprecation in active_support/railsXavier Noria2012-08-021-1/+0
* load active_support/core_ext/object/blank in active_support/railsXavier Noria2012-08-021-1/+0
* Deprecate Relation#all.Jon Leighton2012-07-271-1/+1
* Add fkey attributes to `join_table` migration generatorAleksey Magusev2012-07-191-3/+3
* revert Default timestamps to non-nullDave Kroondyk2012-07-181-1/+1
* Add join table migration generatorAleksey Magusev2012-07-181-2/+5
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-07-071-2/+4
|\
| * fix AR::SchemaStatements#column_exists? example [ci skip]Francesco Rodriguez2012-06-301-1/+1
| * update AR::SchemaStatements#column_exists? documentation [ci skip]Francesco Rodriguez2012-06-301-2/+4
* | Refactor locked? method in query cacheCarlos Antonio da Silva2012-07-071-5/+2
* | Disable query cache for lock queriesDamir Zekic2012-07-061-1/+9
* | fix quoting for ActiveSupport::Duration instancesFrancesco Rodriguez2012-07-041-1/+1
* | Don't need to use delete in the options hashRafael Mendonça França2012-07-032-3/+2
* | Refactor references schema definitionsAleksey Magusev2012-07-031-18/+12
* | Add references schema statementsAleksey Magusev2012-07-031-0/+37
* | Add more options to column_exists? methodAleksey Magusev2012-06-301-4/+6
|/
* add :nodoc: to internal implementations [ci skip]Francesco Rodriguez2012-06-221-1/+1
* Avoid unnecessary catching of Exception instead of StandardError.Dylan Smith2012-06-171-2/+2
* Simplify AR configuration code.Jon Leighton2012-06-151-6/+8
* Merge pull request #6492 from pmahoney/fair-connection-pool2Rafael Mendonça França2012-06-111-37/+174
|\