aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* PostgreSQL, warn once per connection per missing OID. Closes #14275.Yves Senn2014-04-111-2/+2
* PostgreSQL, adapter automatically reloads it's type map. Closes #14678.Yves Senn2014-04-111-3/+20
* PostgreSQL and SQLite, remove varchar limit. [Vladimir Sazhin & Toms Mikoss &...Yves Senn2014-04-041-1/+1
* PostgreSQL, Support for materialized views. [Dave Lee & Yves Senn]Dave Lee2014-04-021-0/+4
* Clarify 'database does not exist' message and implementation.Jeremy Kemper2014-04-011-2/+2
* fix, adjust OID query without range support to include required fields.Yves Senn2014-04-011-3/+4
* refactor, use `typtype` instead of `typinput` to segment PG types.Yves Senn2014-04-011-3/+3
* PostgreSQL, register custom domains. Closes #14305.Yves Senn2014-04-011-1/+11
* refactor, put `PostgreSQLColumn` into `column.rb`.Yves Senn2014-03-311-218/+1
* Reap connections based on owning-thread deathMatthew Draper2014-03-181-4/+0
* Teach PostgreSQLAdapter#reset! to actually resetMatthew Draper2014-03-181-1/+6
* `change_table` supports `citext`. Follow up to #12523.Yves Senn2014-03-111-0/+4
* register OID for PostgreSQL citex datatype [Troy Kruthoff & Lachlan Sylvester]lsylvester2014-03-111-1/+8
* Add Enum type to postgresql adapter's oids to prevent unknown OID warnings.Dieter Komendera2014-03-041-0/+6
* Fix warnings due to:Vipul A M2014-03-031-1/+1
* dynamically define PostgreSQL OID range types.Yves Senn2014-02-231-5/+23
* Reaper has access to threadsafe active? callKevin Casey2014-02-081-1/+6
* Fix regression on `.select_*` methods.Arthur Neves2014-01-301-8/+0
* fix exception translationAaron Patterson2014-01-171-1/+1
* translate exceptions on prepared statement failureAaron Patterson2014-01-171-1/+5
* Make change_table use object of current database adapterNishant Modak2014-01-071-5/+5
* Do not consider PG array columns as number or text columnsCarlos Antonio da Silva2013-12-231-1/+9
* Tell how to Create a Database in Error Messageschneems2013-12-231-0/+6
* Fix PostgreSQL insert to properly extract table name from multiline string SQL.Kuldeep Aggarwal2013-12-191-1/+1
* support creating temporary tables from queriesCody Cutrer2013-12-141-2/+2
* fix pg warnings on geometric typesAaron Patterson2013-12-051-10/+23
* make the type_map per connection. fixes #13182Aaron Patterson2013-12-041-11/+16
* 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