aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* only use the primary_key method, refactor schema and table name parsingAaron Patterson2011-04-111-13/+15
* use prepared statements for primary key queriesAaron Patterson2011-04-111-2/+15
* last insert id can never be called, so remove that code pathAaron Patterson2011-04-111-11/+3
* we know the table and pk, so we can calculate a default sequence nameAaron Patterson2011-04-111-3/+4
* always look up pk and sequence unless both are providedAaron Patterson2011-04-111-6/+5
* pg does not know the insert_id in advance, so super will never return trueAaron Patterson2011-04-111-13/+10
* adding exec_insert for postgresqlAaron Patterson2011-04-111-0/+4
* properly name schema queries for the loggerAaron Patterson2011-04-111-10/+10
* only support pg >= 8.2, so no need to checkAaron Patterson2011-04-111-7/+4
* pg should define insert_sql so that query cache actually works for insertsAaron Patterson2011-04-101-2/+1
* community support for pg < 8.2 has ended, so we can drop support for those ve...Aaron Patterson2011-04-101-62/+12
* use prepared statements to fetch the last insert idAaron Patterson2011-03-211-3/+4
* Optimization for postgres adapter for add_column method. Set default and not ...Timothy N. Tsvetkov2011-02-151-6/+10
* log method takes an option list of bind valuesAaron Patterson2011-02-091-1/+1
* adjust query counts to be consistent across databases, make sure database log...Aaron Patterson2011-02-041-2/+2
* Cleaner way to extract the Postgres versionMatthew Rudy Jacobs2010-11-211-2/+6
* Fix Bug: disable_referential_integrity doesn't work for postgres 9.0.1Matthew Rudy Jacobs2010-11-211-4/+1
* use column names as order by complex function parameters, fix for postgresql ...Raimonds Simanovskis2010-11-071-1/+1
* Avoid warning: shadowing outer local variableSantiago Pastorino2010-11-051-2/+2
* Fixes queries using limits and punctuation in order, removes order("col1, col...Santiago Pastorino2010-11-051-3/+3
* renaming exec in the PG adapterAaron Patterson2010-11-051-3/+3
* adding backwards compatibility for non-prepare statement handling driversAaron Patterson2010-10-261-0/+6
* setting the authorized session clears the statement cacheAaron Patterson2010-10-261-0/+1
* add a session authorization setter to the pg connectionAaron Patterson2010-10-261-0/+5
* avoiding statement cache if there are no bind valuesAaron Patterson2010-10-261-0/+11
* folding async_exec to execAaron Patterson2010-10-261-7/+0
* clear cache before resetting the connectionAaron Patterson2010-10-261-1/+1
* prepare the statement before we cache the keyAaron Patterson2010-10-261-2/+4
* bind substitution is working properlyAaron Patterson2010-10-261-7/+11
* bind parameters are now typecastAaron Patterson2010-10-261-1/+3
* basic bind parameters are workingAaron Patterson2010-10-261-1/+1
* initial exec() method is working in pg adapterAaron Patterson2010-10-261-0/+38
* Use ALTER INDEX syntax to rename an indexMichał Łomnicki2010-10-191-0/+4
* in regexps, the dot in a character class is not a metacharacterXavier Noria2010-10-151-2/+2
* Update the PostgreSQL adapter documentationCarl Lerche2010-10-131-2/+0
* rb_thread_select should always be used in DB drivers when available.Carl Lerche2010-10-131-1/+1
* create fewer objects, call fewer methods in extract_pg_identifier_from_nameAaron Patterson2010-10-041-3/+3
* * + flatten is not required in >= Ruby 1.8.7Aaron Patterson2010-10-041-1/+1
* DRY up postgresql quote logicAaron Patterson2010-09-291-11/+14
* fixing where clause indentationAaron Patterson2010-09-291-4/+4
* use consistent method calls for column inspectionAaron Patterson2010-09-291-1/+1
* require pg when this adapter is loadedAaron Patterson2010-09-291-5/+4
* only reopen ConnectionAdapters onceAaron Patterson2010-09-291-2/+0
* use inheritence to deal with custom methodsAaron Patterson2010-09-291-6/+11
* 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