aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Drop a sqlite_version check because we only support SQLite 3.6.16 or newer.Ben Woosley2013-11-121-1/+0
* Don't use Active Support where we don't need toRafael Mendonça França2013-11-091-1/+1
* log bind variables after they were type casted.Yves Senn2013-11-091-4/+5
* `ActiveRecord::Store` works together with PG `hstore` columns.Yves Senn2013-10-251-0/+4
* Escape the parentheses in the default function regexpRafael Mendonça França2013-10-211-1/+1
* Extract a function to determine if the default value is a functionRafael Mendonça França2013-10-141-1/+5
* Push default_function to superclass to avoid method checkRafael Mendonça França2013-10-141-3/+5
* log the statement name along with the SQLAaron Patterson2013-10-041-1/+1
* log every sql statement, even when they errorAaron Patterson2013-10-041-25/+25
* prepare the statement inside the begin / rescue blockAaron Patterson2013-10-041-4/+4
* wrap logging around the actual query call itself.Aaron Patterson2013-10-041-25/+29
* extract adapter savepoint implementations into `abstract/savepoints.rb`.Yves Senn2013-09-301-5/+1
* Merge pull request #11382 from kennyj/fix_10751-2Rafael Mendonça França2013-09-221-3/+6
|\
| * Migration dump UUID default functions to schema.rb. Fixes #10751.kennyj2013-07-101-3/+6
* | Check if the SQL is not a prepared statementRafael Mendonça França2013-09-111-0/+1
* | cast hstore values on write to be consistent with reading from the db.Yves Senn2013-08-081-0/+8
* | Removed redundant xml override from pg adapterPaul Nikitochkin2013-08-021-7/+3
|/
* Handle single quotes in PostgreSQL default column valuesDylan Markow2013-06-191-1/+1
* Also support extensions in PostgreSQL 9.1, because this has been supported si...kennyj2013-05-151-4/+4
* Revert "Merge pull request #10455 from patricksrobertson/bigserial_id_not_ide...Aaron Patterson2013-05-071-6/+2
* Handle other pk types in PostgreSQL gracefully.Patrick Robertson2013-05-071-2/+6
* Changing method call according to coding conventionsAkshay Khole2013-05-051-1/+1
* 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
|\