aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-4/+4
* Removing most of the symbol to proc usage in Active RecordPrem Sichanugrist2010-08-131-1/+1
* ensuring that description does not exceed 100 columnsNeeraj Singh2010-08-021-4/+8
* remove useless ternary in PostgreSQL adapterAaron Patterson2010-07-141-1/+1
* PostgreSQLAdapter#query string interpolation calls to_s for usAaron Patterson2010-07-141-1/+1
* PostgreSQLAdapter#query bail early if there is no column and dry up our condi...Aaron Patterson2010-07-141-4/+6
* Let's initialize instance variables in the postgres adapter.Aaron Patterson2010-07-141-0/+3
* reducing range comparisons when converting types to sqlAaron Patterson2010-07-131-3/+4
* only loop through all rows and columns once in the postgres adapterAaron Patterson2010-07-131-23/+23
* use constants instead of magic numbers. meowAaron Patterson2010-07-131-1/+3
* our method is modifying the original array, so refactor to use destructive me...Aaron Patterson2010-07-121-5/+4
* PostgreSQLAdapter#select_raw removing dead codeAaron Patterson2010-07-121-3/+0
* PostgreSQLAdapter#select_raw use each_with_index to avoid multiple array lookupsAaron Patterson2010-07-121-5/+5
* PostgreSQLAdapter#select_raw fields and results are empty even if ntuples is 0Aaron Patterson2010-07-121-25/+21
* refactor PostgreSQLAdapter#result_as_array to create fewer Range objectsAaron Patterson2010-07-121-3/+3
* cleaning up PostgreSQLAdapter#selectAaron Patterson2010-07-121-8/+2
* refactoring the postgres adapter index method to avoid inject and use values_...Aaron Patterson2010-06-261-4/+4
* index dump should not include full text indexes. Thanks Ken Mayer for the ori...Aaron Patterson2010-06-261-8/+3
* 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
|/
* setting the timezone in postgres to whatever ruby thinks the timezone is [#48...Aaron Patterson2010-06-171-1/+6
* edit pass: the names of Rails components have a space, ie, "Active Record", n...Xavier Noria2010-06-141-3/+3
* make add_index and remove_index more resilient; new rename_index method; trac...Étienne Barrié2010-05-181-3/+6
* AR: fixed postgres transaction tests [#4519 state:commited]Cezary Baginski2010-05-011-6/+2
* 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
* clearing up many warnings, removing unnecessary regular expresion comparisons...Aaron Patterson2010-04-101-23/+22
* Revert "When creating database with rake, create schemas in schema_search_pat...Michael Koziarski2010-04-091-21/+0
* Fix mapping of bigint/smallint/uuid columns in postgresql adapter.Ernie Miller2010-03-311-0/+6
* PostgreSQL adapter: escape_bytea, quote_string and unescape_bytea aren't thre...Eugene Pimenov2010-03-281-6/+6
* 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
* In PostgreSQLAdapter, switch tables query to use current_schemas function [#9...Kris Selden2010-03-261-3/+1
* PostgreSQLAdapter: set time_zone to UTC when Base.default_timezone == :utc so...Jack Christensen2010-01-251-1/+5
* Merge commit 'rails/master'Emilio Tagua2009-08-101-3/+22
|\
| * PostgreSQL: XML datatype supportLeonardo Borges2009-08-091-13/+21
| * raises exception (ActiveRecord::ConfigurationError with message) on habtm ass...Jaime Bellmyer2009-08-091-0/+11
* | Merge commit 'rails/master'Emilio Tagua2009-06-301-0/+11
|\|
| * Make sure the wrapped exceptions also have the original exception available.Michael Koziarski2009-06-261-2/+2
| * Translate foreign key violations to ActiveRecord::InvalidForeignKey exceptions.Michael Schuerig2009-06-261-0/+2
| * Translate adapter errors that indicate a violated uniqueness constraint to Ac...Michael Schuerig2009-06-261-0/+9
* | Arel now buils SQL queries for associations. Removed old code andEmilio Tagua2009-06-231-14/+0
* | Merge commit 'rails/master'Emilio Tagua2009-06-091-2/+14
|\|
| * PostgreSQL adapter should call thread safe quote_string functionEugene Pimenov2009-06-091-2/+14
* | Refactors to work with latest Arel implementation.Emilio Tagua2009-06-021-0/+1
* | Merge commit 'rails/master'Emilio Tagua2009-05-181-0/+1
|\|