aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* index dump should not include full text indexes. Thanks Ken Mayer for the ↵Aaron Patterson2010-06-261-8/+3
| | | | | | original patch! [#4949 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Merge remote branch 'miloops/fixes'José Valim2010-06-241-1/+1
|\
| * Remove block definition from method, is not needed since yield is used inside.Emilio Tagua2010-06-241-1/+1
| |
* | Your original TIME ZONE value on PostgreSQL is correctly restored now, after ↵Santiago Pastorino2010-06-241-3/+5
|/ | | | | | | | going through options :utc and then going back to :local [#4950 state:committed] Signed-off-by: José Valim <jose.valim@gmail.com>
* setting the timezone in postgres to whatever ruby thinks the timezone is ↵Aaron Patterson2010-06-171-1/+6
| | | | | | [#4895 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* edit pass: the names of Rails components have a space, ie, "Active Record", ↵Xavier Noria2010-06-141-3/+3
| | | | not "ActiveRecord"
* make add_index and remove_index more resilient; new rename_index method; ↵Étienne Barrié2010-05-181-3/+6
| | | | | | | | track database limits [#3452 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* AR: fixed postgres transaction tests [#4519 state:commited]Cezary Baginski2010-05-011-6/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* PostgreSQL: always rely on pg driver for escape/unescape and quoting dutiesJeremy Kemper2010-04-241-88/+7
|
* PostgreSQL: use standard-conforming strings if possibleJeremy Kemper2010-04-241-30/+14
|
* Drop support for postgres driver. Use pg >= 0.9.0.Jeremy Kemper2010-04-241-16/+2
|
* mode postgresql adapters table_exists? method take the schema in to account. ↵Aaron Patterson2010-04-111-1/+23
| | | | | | [#4341 state:resolved] Signed-off-by: wycats <wycats@gmail.com>
* clearing up many warnings, removing unnecessary regular expresion ↵Aaron Patterson2010-04-101-23/+22
| | | | | | comparisons [#4365 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Revert "When creating database with rake, create schemas in ↵Michael Koziarski2010-04-091-21/+0
| | | | | | | | | | | | | schema_search_path if it doesn't exist." This reverts commit 6c2a0675f11a9b5b8e88ed7dbccd65cb51be8029. Reverting because it breaks the ability to run tests using a non-superuser. Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb activerecord/lib/active_record/railties/databases.rake
* Fix mapping of bigint/smallint/uuid columns in postgresql adapter.Ernie Miller2010-03-311-0/+6
| | | | Signed-off-by: Emilio Tagua <miloops@gmail.com>
* PostgreSQL adapter: escape_bytea, quote_string and unescape_bytea aren't ↵Eugene Pimenov2010-03-281-6/+6
| | | | | thread-safe in Ruby 1.8 [#3237 state:resolved] Signed-off-by: wycats <wycats@gmail.com>
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-281-0/+1
|
* Oops, a docfix.Rizwan Reza2010-03-281-1/+1
|
* When creating database with rake, create schemas in schema_search_path if it ↵Rizwan Reza2010-03-281-0/+21
| | | | doesn't exist.
* In PostgreSQLAdapter, switch tables query to use current_schemas function ↵Kris Selden2010-03-261-3/+1
| | | | | | [#918 state:resolved] Signed-off-by: wycats <wycats@gmail.com>
* PostgreSQLAdapter: set time_zone to UTC when Base.default_timezone == :utc ↵Jack Christensen2010-01-251-1/+5
| | | | so that Postgres doesn't incorrectly offset-adjust values inserted into TIMESTAMP WITH TIME ZONE columns [#3777 state:resolved]
* Merge commit 'rails/master'Emilio Tagua2009-08-101-3/+22
|\ | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/calculations.rb activerecord/lib/active_record/connection_adapters/mysql_adapter.rb activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * PostgreSQL: XML datatype supportLeonardo Borges2009-08-091-13/+21
| | | | | | | | | | | | [#1874 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * raises exception (ActiveRecord::ConfigurationError with message) on habtm ↵Jaime Bellmyer2009-08-091-0/+11
| | | | | | | | | | | | association creation if join table contains a primary key Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* | Merge commit 'rails/master'Emilio Tagua2009-06-301-0/+11
|\| | | | | | | | | Conflicts: activerecord/test/cases/adapter_test.rb
| * Make sure the wrapped exceptions also have the original exception available.Michael Koziarski2009-06-261-2/+2
| | | | | | | | [#2419 state:committed]
| * Translate foreign key violations to ActiveRecord::InvalidForeignKey exceptions.Michael Schuerig2009-06-261-0/+2
| | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
| * Translate adapter errors that indicate a violated uniqueness constraint to ↵Michael Schuerig2009-06-261-0/+9
| | | | | | | | | | | | ActiveRecord::RecordNotUnique exception derived from ActiveReecord::StatementInvalid. Signed-off-by: Michael Koziarski <michael@koziarski.com>
* | Arel now buils SQL queries for associations. Removed old code andEmilio Tagua2009-06-231-14/+0
| | | | | | | | updated Arel version to support this.
* | Merge commit 'rails/master'Emilio Tagua2009-06-091-2/+14
|\|
| * PostgreSQL adapter should call thread safe quote_string functionEugene Pimenov2009-06-091-2/+14
| | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* | Refactors to work with latest Arel implementation.Emilio Tagua2009-06-021-0/+1
| |
* | Merge commit 'rails/master'Emilio Tagua2009-05-181-0/+1
|\| | | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/base.rb activerecord/lib/active_record/migration.rb activerecord/test/cases/helper.rb
| * Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+1
| |
* | Refactor to calculations. Migration's versions are string not integer. ARel ↵Emilio Tagua2009-05-061-10/+10
|/ | | | submodule updated.
* Fixed dumping from postgresql columns in index in wrong order. [#2515 ↵Max Lapshin2009-04-211-15/+18
| | | | | | state:resolved] Signed-off-by: Tarmo Tänav <tarmo@itech.ee>
* Quote table names when casting to regclass so that capitalized tables are ↵Scott Woods2009-04-211-3/+3
| | | | | | supported. [#2418 state:resolved] Signed-off-by: Tarmo Tänav <tarmo@itech.ee>
* Fixed wrong quoting of index names in postgres [#2402 state:resolved]Max Lapshin2009-04-211-1/+1
| | | | Signed-off-by: Tarmo Tänav <tarmo@itech.ee>
* Support multiple schemas in table names for postgresql [#390 state:resolved]Max Lapshin2009-04-051-1/+30
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix PostgreSQL unit test failures that only occur when using the old ↵Hongli Lai (Phusion)2009-01-131-6/+4
| | | | | | | | 'postgres' driver. [#1748 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Merge branch 'master' into savepointsJeremy Kemper2009-01-101-7/+7
|\
| * Inline code comments for class_eval/module_eval [#1657 state:resolved]Xavier Noria2008-12-281-7/+7
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Reimplement Jeremy's PostgreSQL automatic transaction state introspection code.Hongli Lai (Phusion)2008-11-031-0/+10
| | | | | | | | | | | | - Fixed compatibility with the old 'postgres' driver which doesn't support transaction state introspection. - Added unit tests for it.
* | Make SQLite3 pass the unit tests for savepoints.Hongli Lai (Phusion)2008-11-031-0/+4
| |
* | Fix a stale typo in the PostgreSQL adapter. Fix a stale mock expection in ↵Hongli Lai (Phusion)2008-11-031-1/+1
| | | | | | | | transaction_test.
* | Revert "PostgreSQL: introduce transaction_active? rather than tracking ↵Hongli Lai (Phusion)2008-11-031-38/+0
| | | | | | | | | | | | | | | | | | | | | | | | activity ourselves" This commit conflicts with savepoint support. This reverts commit 045713ee240fff815edb5962b25d668512649478. Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
* | Implement savepoints.Jonathan Viney2008-11-031-0/+11
|/
* Remove reference to fformat to restore support for postgres gem.Michael Koziarski2008-10-261-1/+1
|
* Fix binary data corruption bug in PostgreSQL adaptorAdam Majer2008-10-251-68/+79
| | | | | | | | | | | 1. Move the binary escape/unescape from column to the driver - we should store binary data AR just like most other adaptors 2. check to make sure we only unescape bytea data PGresult.ftype( column ) == 17 that is passed to us in escaped format PGresult.fformat( column ) == 0 Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1063 state:committed]
* still need to track whether we're the toplevel transactionJeremy Kemper2008-09-041-3/+10
|