aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* change_column accepts :default => nil. Closes #6956.Jeremy Kemper2007-01-151-3/+6
* MySQL, PostgreSQL: change_column_default quotes the default value and doesn't...Jeremy Kemper2007-01-151-1/+1
* PostgreSQL: use a subselect to correctly perform eager finds with :limit and ...Jeremy Kemper2007-01-121-4/+16
* Oracle: fix limited id selection for eager loading. Closes #6515.Jeremy Kemper2006-11-101-10/+19
* Oracle: resolve test failures, use prefetched primary key for inserts, check ...Jeremy Kemper2006-11-011-12/+0
* automatically add primary key to #select_limited_ids_list order by clause for...Rick Olson2006-10-131-0/+4
* fix select_limited_ids_list issues in postgresql, retain current behavior in ...Rick Olson2006-10-131-1/+10
* learn to clean up after myselfRick Olson2006-10-091-4/+0
* Reverted old select_limited_ids_list postgresql fix that caused issues in mys...Rick Olson2006-10-091-0/+4
* Rollback #5819 since it's compatible with PostgreSQL 8.1 only. References #5819.Jeremy Kemper2006-08-221-1/+5
* whitespaceJeremy Kemper2006-08-191-2/+1
* PostgreSQL: simplify index introspection query. Closes #5819.Jeremy Kemper2006-08-191-5/+2
* PostgreSQL: autodetected sequences work correctly with multiple schemas. Rely...Jeremy Kemper2006-08-091-2/+3
* PostgreSQL: return array fields as strings. Closes #4664.Jeremy Kemper2006-07-101-0/+2
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-081-8/+12
* PostgreSQL: correctly quote the ' in pk_and_sequence_for. Closes #5462.Jeremy Kemper2006-07-071-1/+1
* PostgreSQL: correctly quote microseconds in timestamps. Closes #5641.Jeremy Kemper2006-07-071-1/+1
* PostgreSQL: add_column can add a not null column with a default.Jeremy Kemper2006-07-071-3/+17
* PostgreSQL: support microsecond time resolution. Closes #5492.Jeremy Kemper2006-06-251-1/+5
* r4644@asus: jeremy | 2006-06-16 14:57:03 -0700Jeremy Kemper2006-06-191-19/+34
* PostgreSQL: don't ignore port when host is nil since it's often used to label...Jeremy Kemper2006-06-021-1/+1
* PostgreSQL: migrations support :limit with :integer columns by mapping limit ...Jeremy Kemper2006-05-121-0/+12
* Properly quote index names in migrations (closes #4764) [John Long]Rick Olson2006-04-201-2/+1
* Multiple fixes and optimizations in PostgreSQL adapter, allowing ruby-postgre...Tobias Lütke2006-04-041-7/+25
* Add AbstractAdapter#table_alias_for to create table aliases according to the ...Rick Olson2006-03-181-0/+3
* Remove broken attempts at handling columns with a a default of 'now()' in the...Michael Koziarski2006-03-181-3/+0
* ActiveRecord::Base.remove_connection explicitly closes database connections a...Jeremy Kemper2006-02-261-0/+5
* PostgreSQL: correctly parse negative integer column defaults. References #3776.Jeremy Kemper2006-02-091-1/+1
* Support the :column option for remove_index with the PostgreSQL adapter. Clos...Marcel Molina2006-01-311-7/+1
* Fix change_column to work with postgres 7.x and 8.x.Scott Barron2005-12-201-1/+11
* DRY up PG's add_column a bit to use change_column_default and match the otherScott Barron2005-12-201-9/+3
* Check for the key instead of the value, because it (the value) can be false.Scott Barron2005-12-201-1/+1
* PostgreSQL: more robust sequence name discovery. References #3087.Jeremy Kemper2005-12-081-3/+4
* PostgreSQL: active? compatibility with the pure-Ruby driver. Still need to m...Jeremy Kemper2005-11-281-2/+4
* MySQL, PostgreSQL: reconnect! also reconfigures the connection. Otherwise, t...Jeremy Kemper2005-11-221-4/+17
* r3032@asus: jeremy | 2005-11-12 23:16:52 -0800Jeremy Kemper2005-11-131-0/+18
* PostgreSQL: last_insert_id uses select_value rather than using @connection.ex...Jeremy Kemper2005-11-131-2/+2
* r4331@asus: jeremy | 2005-11-12 17:03:45 -0800Jeremy Kemper2005-11-131-2/+2
* r4325@asus: jeremy | 2005-11-12 03:57:46 -0800Jeremy Kemper2005-11-121-15/+42
* Map AR time to PostgreSQL TIME. Closes #2575.Jeremy Kemper2005-10-231-1/+1
* Correct PostgreSQL primary key sequence detection. #2507Jeremy Kemper2005-10-181-13/+20
* r3616@asus: jeremy | 2005-09-26 23:09:28 -0700Jeremy Kemper2005-10-161-4/+36
* Back out of [2548].Marcel Molina2005-10-141-18/+18
* Optimize postgresql selects.Marcel Molina2005-10-131-18/+18
* PostgreSQL returns the path type wrapped in quotes.Marcel Molina2005-10-091-1/+1
* Add geometric type for postgresql adapter. Closes #2233.Marcel Molina2005-10-091-0/+2
* Add rename_table to mysql, sqlite and postgres adapters for use in migrationsTobias Lütke2005-10-061-0/+4
* Get rid of old symbolize_strings_in_hash.Jeremy Kemper2005-09-301-9/+7
* Ticket 2256 - Recognize PostgreSQL NOW() default as equivalent to CURRENT_TIM...Jeremy Kemper2005-09-271-1/+1
* r3590@asus: jeremy | 2005-09-26 17:00:53 -0700Jeremy Kemper2005-09-261-7/+43