aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
* postgresql supports prepare statement deletesAaron Patterson2011-04-291-22/+31
|
* Merged pull request #310 from beanieboi/master.Aaron Patterson2011-04-261-1/+10
|\ | | | | Added support for tsvector datatype in postgres
| * Added tsvector Datatype SupportBenjamin Fritsch2011-04-261-1/+10
| | | | | | Applied Patch from https://rails.lighthouseapp.com/projects/8994/tickets/5577-suport-from-tsvector-data-type-in-postgresql
* | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-04-231-4/+6
|\ \ | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * | copy-edits 0e2644cXavier Noria2011-04-231-1/+1
| | |
| * | Added docs for #drop_database on MySQL adapterSebastian Martinez2011-04-221-1/+1
| | |
| * | Added docs for #disconnect! on adaptersSebastian Martinez2011-04-221-1/+2
| | |
| * | Added missing docs for clear_cache! on adaptersSebastian Martinez2011-04-221-0/+1
| | |
| * | Have a more connection specific rdoc for +supports_statement_cache?+Sebastian Martinez2011-04-221-2/+2
| | |
| * | Removed ON() on distinct commentSebastian Martinez2011-04-221-1/+1
| | |
* | | split indexes and column types on money / binary iterationAaron Patterson2011-04-221-6/+5
| | |
* | | fetch result row arrays from pg in C and return early if there are no money ↵Aaron Patterson2011-04-221-31/+36
| | | | | | | | | | | | or binary columns. :heart:
* | | removing incorrect comment and string concatenationAaron Patterson2011-04-221-4/+1
| | |
* | | Move #exec_insert to abstract adapter's database statements.Ken Collins2011-04-221-4/+0
| |/ |/|
* | stop using distinct on for the unique id queries. [#6450 state:resolved]Aaron Patterson2011-04-211-1/+1
|/
* Fix test_load_save in test/cases/binary_test.rb (thanks @tenderlove for ↵Jon Leighton2011-04-171-2/+1
| | | | actually working out how to fix it)
* using the database adapter to typecast before executing prepared statementAaron Patterson2011-04-141-1/+13
|
* insert statements are prepared, but values are not escaped properlyAaron Patterson2011-04-141-0/+12
|
* use index based substitution for bind parametersAaron Patterson2011-04-131-2/+2
|
* remove so many nested if statementsAaron Patterson2011-04-111-9/+11
|
* wrap the pg_get_serial_sequence function and reuse it for the default ↵Aaron Patterson2011-04-111-2/+10
| | | | sequence name
* cache table exists queries in prepared statement cacheAaron Patterson2011-04-111-3/+6
|
* 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 ↵Aaron Patterson2011-04-101-62/+12
| | | | versions
* 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
| | | | null in one query
* 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 ↵Aaron Patterson2011-02-041-2/+2
| | | | log the same things
* 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
| | | | | | adapter to correctly remove ASC/DESC Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Avoid warning: shadowing outer local variableSantiago Pastorino2010-11-051-2/+2
|
* Fixes queries using limits and punctuation in order, removes order("col1, ↵Santiago Pastorino2010-11-051-3/+3
| | | | | | col2") usage in favor of order(["col1", "col2"}) [#4597 state:committed]
* 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
|