aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* :scissors:Rafael Mendonça França2014-05-141-2/+0
* PostgreSQLAdapter::Utils seems to be only used from a single spot - quite red...kares2014-05-141-19/+0
* move PostgreSQL's DatabaseStatements out of the PostgreSQLAdapter name-spacekares2014-05-141-6/+1
* PostgreSQL's SchemaStatements seems a could candidate for re-use (with AR-JDBC)kares2014-05-141-2/+5
* introduce AR::ConnectionAdapters::PostgreSQL for sharing modules (with AR-JDBC)kares2014-05-141-6/+11
* extract pg type map initialization process to `TypeMapInitializer`.Yves Senn2014-05-131-65/+3
* Merge branch 'master' into adequaterecordAaron Patterson2014-04-201-0/+8
|\
| * Optimize select_value, select_values, select_rows and dry up checking whether...Kris Selden2014-04-171-0/+8
* | Merge branch 'master' into adequaterecordAaron Patterson2014-04-141-3/+20
|\|
| * 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
* | remove the bind visitor since the collector handles substituting bind valuesAaron Patterson2014-04-091-6/+2
|/
* 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
|\