aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
Commit message (Expand)AuthorAgeFilesLines
...
* Make force equality checking more strictly not to allow serialized attributeRyuta Kamizono2018-05-252-0/+8
* `SqlTypeMetadata` is :nodoc: class [ci skip]Ryuta Kamizono2018-05-211-0/+1
* Fix multiline expression indexes for postgresql (#31621)fatkodima2018-03-161-1/+1
* Fix `#columsn_for_distinct` of MySQL and PostgreSQLkg8m2018-02-271-1/+1
* PostgreSQL: Allow BC dates like datetime consistentlyRyuta Kamizono2018-02-231-0/+3
* PostgreSQL: Treat infinite values in date like datetime consistentlyRyuta Kamizono2018-02-232-0/+21
* Use private attr_readerRyuta Kamizono2018-02-231-2/+1
* Rails 6 requires Ruby 2.3+Jeremy Daer2018-02-171-4/+1
* Remove usage of strip_heredoc in the framework in favor of <<~Rafael Mendonça França2018-02-161-4/+4
* Dump correctly index nulls order for postgresqlfatkodima2018-01-281-2/+6
* Merge pull request #31773 from dinahshi/postgresql_bulk_patchMatthew Draper2018-01-241-1/+1
|\
| * Use concat to join procs arrays in bulk_change_tableDinah Shi2018-01-231-1/+1
* | Support for PostgreSQL foreign tablesfatkodima2018-01-221-1/+11
* | Enable autocorrect for `Lint/EndAlignment` copKoichi ITO2018-01-181-1/+1
* | Correctly handle infinity value in PostgreSQL range typeyuuji.yaginuma2018-01-042-2/+10
|/
* Merge pull request #31331 from dinahshi/postgresql_bulk_updateMatthew Draper2018-01-031-5/+36
|\
| * Add bulk alter support for PostgreSQLDinah Shi2017-12-061-5/+36
* | Suppress `warning: BigDecimal.new is deprecated` in activerecordYasuo Honda2017-12-131-1/+1
|/
* Emulate JSON types for SQLite3 adapter (#29664)Ryuta Kamizono2017-12-031-4/+0
* `change_column_default` should be executed after type changingRyuta Kamizono2017-12-031-7/+8
* Extract duplicated index column options normalization as `options_for_index_c...Ryuta Kamizono2017-12-031-0/+12
* Refactor `length`, `order`, and `opclass` index options dumpingRyuta Kamizono2017-12-031-11/+5
* Merge pull request #31230 from dinahshi/postgresql_extract_sqlMatthew Draper2017-12-031-33/+53
|\
| * Extract sql fragment generators for alter table from PostgreSQL adapterDinah Shi2017-12-021-33/+53
* | Fix method name in `validate_constraint` doc [ci skip]yuuji.yaginuma2017-12-021-1/+1
* | Add support for invalid foreign keys in PostgresTravis Hunter2017-12-013-1/+68
* | Add support for PostgreSQL operator classes to add_indexGreg Navis2017-11-301-12/+20
|/
* Implement `PostgreSQL::SchemaDumper#extensions`Yasuo Honda2017-10-251-0/+12
* Remove `supports_disable_referential_integrity?`Yasuo Honda2017-10-231-25/+17
* Remove deprecated argument `name` from `#indexes`Rafael Mendonça França2017-10-231-9/+1
* Remove deprecated argument `default` from `index_name_exists?`Rafael Mendonça França2017-10-231-6/+1
* [Active Record] require => require_relativeAkira Matsuda2017-10-211-21/+21
* Fix longer sequence name detection for serial columns (#28339)Ryuta Kamizono2017-10-152-1/+22
* `Postgres::OID::Range` serializes to a `Range`, quote in `Quoting`Thomas Cannon2017-09-262-1/+9
* Extract `integer_like_primary_key_type` to ease to handle it for adaptersRyuta Kamizono2017-09-251-6/+3
* Move integer-like primary key normalization to `new_column_definition`Ryuta Kamizono2017-09-231-7/+12
* Fix collided sequence name detectionRyuta Kamizono2017-09-181-1/+8
* Fix `quote_default_expression` for UUID with array defaultRyuta Kamizono2017-09-081-1/+1
* Refactor `SchemaDumper` to make it possible to adapter specific customizationRyuta Kamizono2017-08-222-1/+5
* Remove deprecated `#migration_keys`Ryuta Kamizono2017-08-221-5/+0
* Place `update_table_definition` consistently in `SchemaStatements`Ryuta Kamizono2017-08-211-0/+4
* Don't expose `prepare_column_options`Ryuta Kamizono2017-08-211-7/+5
* Restore `to_sql` to return only SQL (#29945)Ryuta Kamizono2017-08-181-2/+1
* Change http postgresql.org links to https [ci skip]yuuji.yaginuma2017-07-301-1/+1
* Refactor Active Record to let Arel manage bind paramsSean Griffin2017-07-241-1/+2
* Merge pull request #29869 from kamipo/make_type_map_to_privateRafael França2017-07-211-2/+2
|\
| * Make `type_map` to private because it is only used in the connection adapterRyuta Kamizono2017-07-201-2/+2
* | Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-1932-0/+64
|/
* [Action Record] `rubocop -a --only Layout/EmptyLineAfterMagicComment`Koichi ITO2017-07-111-0/+1
* Merge pull request #29655 from kirs/frozen-friendly-ap-arMatthew Draper2017-07-101-1/+2
|\