aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
...
| * | add hstore to postgres native types and defaultsJoel2012-02-081-1/+5
* | | Merge branch 'master' into instance_readerAaron Patterson2012-02-104-5/+25
|\ \ \
| * | | Made schema dumper recognize partial indices' where statementsMarcelo Silveira2012-02-092-2/+3
| * | | Added where option to add_index to support postgresql partial indicesMarcelo Silveira2012-02-093-3/+22
| |/ /
* | | fixing indentation, moving class methods togetherAaron Patterson2012-02-091-124/+124
* | | removing dead codeAaron Patterson2012-02-091-7/+0
* | | use the pg column to cast valuesAaron Patterson2012-02-081-1/+1
* | | only unescape bytea after it has been read from the databaseAaron Patterson2012-02-072-6/+4
* | | pgcolumn knows how to typecast binary columnsAaron Patterson2012-02-071-0/+6
* | | give each PG type a `type` method and decortate tz attributesAaron Patterson2012-02-071-12/+20
* | | hstores can be typecastAaron Patterson2012-02-071-0/+10
* | | columns are lazily typecast, so no more calls to `result_as_array`Aaron Patterson2012-02-071-1/+1
* | | taking column width in to account when fetching decimal fieldsAaron Patterson2012-02-072-2/+42
* | | return early from typecasting if the value is nilAaron Patterson2012-02-071-1/+15
* | | mapping more oidsAaron Patterson2012-02-071-1/+7
* | | many of the OIDs mapped and implementedAaron Patterson2012-02-072-1/+164
|/ /
* | delegate attribute typecasting to the columnAaron Patterson2012-02-061-0/+15
* | prevents the database.yml template option from being passed to PGConnSean Kirby2012-02-061-1/+1
* | columns method doesn't have name argumentRafael Mendonça França2012-02-021-1/+1
* | Remove useless argument in #columns.Sebastian Martinez2012-02-024-4/+4
* | use the class method to (un)escape binary valuesAaron Patterson2012-02-011-2/+2
|/
* Fixed issue with SQLite adapter corrupting binary dataChris Feist2012-01-311-16/+1
* QueryCache will just dup an AR::Result, AR::Result can deep copyAaron Patterson2012-01-311-9/+15
* always return the result set from select_allAaron Patterson2012-01-311-1/+1
* made the result set object act more like an arrayAaron Patterson2012-01-313-3/+3
* Merge pull request #4763 from kennyj/fix_4754Jon Leighton2012-01-311-1/+1
|\
| * Fix GH #4754. Remove double-quote when using ANSI_QUOTESkennyj2012-01-311-1/+1
* | query cache instrumentation should included the bindings in the payload [clos...Xavier Noria2012-01-301-1/+1
|/
* Add `create_join_table` migration helper to create HABTM join tablesRafael Mendonça França2012-01-271-0/+42
* Handle nil in add_index :length option in MySQLPaul Sadauskas2012-01-241-1/+1
* Only show the type if column is presentRafael Mendonça França2012-01-231-1/+2
* Don't type-cast unknown types to YAML.Stephen Celis2012-01-201-1/+1
* avoid useless is_a checksAaron Patterson2012-01-191-8/+8
* use Rack::BodyProxy in activerecord middlewaresSergey Nartimov2012-01-161-31/+5
* refactor schema migration table creation to the schema migration modelAaron Patterson2012-01-131-9/+1
* use the schema migration model to dump schema infoAaron Patterson2012-01-131-2/+5
* on and ON are type casted to a true boolean columnSantiago Pastorino2012-01-111-2/+2
* dropping support for `schema_info`.Aaron Patterson2012-01-101-12/+0
* Remove Array.wrap calls in ActiveRecordRafael Mendonça França2012-01-061-5/+4
* delete reaping frequency from the db configAaron Patterson2012-01-051-4/+6
* Postgresql: restore previous behaviour regarding to nil values in connection ...Lars Kanis2012-01-051-0/+1
* Postgresql: Allow setting of any libpq connection parametersLars Kanis2012-01-031-17/+23
* updating the reaping frequency documentationAaron Patterson2011-12-301-0/+3
* rename start to run and use Thread.pass rather than sleeping to schedule the ...Aaron Patterson2011-12-301-2/+2
* connection pool starts the reaperAaron Patterson2011-12-301-0/+1
* connection specification will deep copy the configAaron Patterson2011-12-301-0/+4
* each connection pool has a reaperAaron Patterson2011-12-302-2/+6
* introduce a timer class for reaping connectionsAaron Patterson2011-12-301-0/+19
* raise a pull full error when the connection pool is full and no connection ca...Aaron Patterson2011-12-301-18/+20
* connections are only removed if they are inactveAaron Patterson2011-12-301-1/+1