aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Add parameter :sslcompression to PostgreSQL adapter.Lars Kanis2013-05-021-2/+2
* Improve docs for postgresql with uuid primary keys [ci skip]Carlos Antonio da Silva2013-05-011-8/+7
* allow override of uuid_generate_v4() default by passing default: nilChad Moone2013-05-011-1/+30
* Correctly parse bigint defaults in PostgreSQLErik Peterson2013-04-051-1/+1
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-03-301-2/+2
|\
| * nodoc AR::ConnectionHandling for adapters [ci skip]Francesco Rodriguez2013-03-151-2/+2
* | Adds support for concurrent indexing in PostgreSQL adapterDan McClain2013-03-251-0/+4
* | Make Postgres point type correspond to ruby array with two floats insideMartin Schürrer2013-03-251-1/+8
* | Created a layer of abstraction for the valid type checking in schema dumper. ...Ranjay Krishna2013-03-251-0/+4
* | add uuid primary key supportAaron Patterson2013-03-221-0/+7
* | pull add_column_options! off the pg connection classAaron Patterson2013-03-221-13/+0
* | push SQL generation inside the schema creation objectAaron Patterson2013-03-221-2/+2
* | mostly decouple TableDefinition from the database connectionAaron Patterson2013-03-221-1/+1
* | decouple column definition from the database connectionAaron Patterson2013-03-221-2/+2
* | use `connect_poll` on pg so that reaping does not hurt the connectionAaron Patterson2013-03-201-2/+1
* | you can provide uuid_generate_v4 as the default value for uuid columnsAaron Patterson2013-03-141-1/+7
* | pg is the only adapter that supports the xml type, so push the method downAaron Patterson2013-03-141-0/+4
* | extract factory method and push common code up to abstract adapterAaron Patterson2013-03-141-5/+2
* | Also quote extension name in disable_extensionStephen Touset2013-03-121-1/+1
* | fixes enable_extension bug in postgresql_adapterDarren Woodley2013-03-081-1/+1
|/
* Unprepared Visitor + unprepared_statementCédric FABIANSKI2013-03-081-1/+1
* Wrong exception is occured when raising no translatable exceptionkennyj2013-03-011-0/+2
* Support PostgreSQL specific column types when using `change_table`.Yves Senn2013-02-281-2/+14
* Do not type cast all the database url values.Rafael Mendonça França2013-02-241-3/+3
* Remove valid_type? methodJon Leighton2013-02-151-4/+0
* Revert "Make valid_type? public"Jon Leighton2013-02-151-4/+4
* Make valid_type? publicSam Ruby2013-02-141-4/+4
* Merge pull request #9204 from ranjaykrishna/col-probAaron Patterson2013-02-121-0/+4
|\
| * checking in the abstractions for valid type checking:Ranjay Krishna2013-02-121-0/+4
* | Call super to use the abstract adapter implementation insteadCarlos Antonio da Silva2013-02-061-1/+1
* | add ActiveRecord::AbstractAdapter#extensions and ActiveRecord::ConnectionAdap...Justin George2013-02-061-0/+9
* | reloading type map on extension changingAaron Patterson2013-01-291-2/+11
* | fixing commentAaron Patterson2013-01-291-1/+1
* | Fix typoRafael Mendonça França2013-01-291-1/+1
* | Only search for enabled extension if the PostgreSQL version supportsRafael Mendonça França2013-01-291-3/+5
* | add API to pg for enabling / disabling hstoreAaron Patterson2013-01-281-0/+19
* | Fix PostgreSQL tests on TravisAndrew White2013-01-241-0/+5
* | Add postgresql range types supportbUg2013-01-231-11/+34
|/
* Use whitelist to pass valid connection parameters to PGConn.Rafael Mendonça França2013-01-061-7/+10
* Remove the configuration key in the correct placeRafael Mendonça França2013-01-061-3/+1
* Remove unnecessary begin..rescue..end, use only rescueAkira Matsuda2013-01-061-25/+23
* Support for PostgreSQL's ltree data type.Rob Worley2013-01-041-1/+8
* AR supporting new intrange data type on PostgreSQL >= 9.2Alexey2012-12-161-4/+15
* Session variables for mysql, mysql2, and postgresql adapters can be setAaron Stone2012-12-081-1/+16
* #7914 Remove code for unsupported postgreSQL version.Arturo Pie2012-10-131-3/+0
* #7914 Using a better way to get the defaults from db.Arturo Pie2012-10-131-1/+2
* #7914 get default value when type uses schema nameArturo Pie2012-10-131-1/+1
* Fixed unclosing tagAvnerCohen2012-10-091-1/+1
* Support for specifying transaction isolation levelJon Leighton2012-09-211-0/+4
* Merge pull request #7547 from danmcclain/pg-arraysRafael Mendonça França2012-09-161-9/+66
|\