aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql
Commit message (Expand)AuthorAgeFilesLines
* Use squiggly heredoc to strip odd indentation in the executed SQLRyuta Kamizono2018-11-228-20/+20
* Fixing an issue when parsing an opclass by allowing indexed columnThomas Bianchini2018-11-211-0/+12
* Add support for UNLOGGED Postgresql tablesJacob Evelyn2018-11-131-0/+74
* Fix test case for money schema defaultRyuta Kamizono2018-11-121-1/+1
* Change the empty block style to have space inside of the blockRafael Mendonça França2018-09-251-1/+1
* Enable `Performance/UnfreezeString` copyuuji.yaginuma2018-09-232-6/+6
* `supports_xxx?` returns whether a feature is supported by the backendRyuta Kamizono2018-09-081-8/+0
* Merge pull request #32647 from eugeneius/lazy_transactionsMatthew Draper2018-08-232-1/+4
|\
| * Omit BEGIN/COMMIT statements for empty transactionsEugene Kenny2018-08-132-1/+4
* | Add database configuration to disable advisory locks.Guo Xiang Tan2018-08-221-0/+8
|/
* PostgreSQL 10 new relkind for partitioned tables (#31336)Yannick Schutz2018-07-271-0/+22
* OS X -> macOS [Closes #30313]Xavier Noria2018-06-231-1/+1
* Parse raw value only when a value came from user in numericality validatorRyuta Kamizono2018-05-281-1/+4
* Make force equality checking more strictly not to allow serialized attributeRyuta Kamizono2018-05-251-0/+6
* Fix `CustomCops/AssertNot` to allow it to have failure messageRyuta Kamizono2018-05-132-3/+3
* Remove unnecessary `respond_to?(:report_on_exception)` checkingyuuji.yaginuma2018-03-021-2/+2
* Fix `#columsn_for_distinct` of MySQL and PostgreSQLkg8m2018-02-271-10/+10
* PostgreSQL: Allow BC dates like datetime consistentlyRyuta Kamizono2018-02-231-0/+18
* PostgreSQL: Treat infinite values in date like datetime consistentlyRyuta Kamizono2018-02-232-0/+63
* Deprecate update_attributes and update_attributes!Eddie Lebow2018-02-171-2/+2
* Dump correctly index nulls order for postgresqlfatkodima2018-01-282-0/+34
* Use assert_predicate and assert_not_predicateDaniel Colson2018-01-2517-61/+61
* Change refute to assert_notDaniel Colson2018-01-252-3/+3
* Use respond_to test helpersDaniel Colson2018-01-251-1/+1
* Merge pull request #31422 from Edouard-chin/multistatement-fixturesMatthew Draper2018-01-241-1/+3
|\
| * Build a multi-statement query when inserting fixtures:Edouard CHIN2018-01-221-1/+3
* | Support for PostgreSQL foreign tablesfatkodima2018-01-221-0/+109
* | Correctly handle infinity value in PostgreSQL range typeyuuji.yaginuma2018-01-041-0/+12
* | Suppress `warning: BigDecimal.new is deprecated` in activerecordYasuo Honda2017-12-134-12/+12
* | Suppress expected exceptions by `report_on_exception` = `false` in Ruby 2.5Yasuo Honda2017-12-131-0/+2
|/
* Refactor `length`, `order`, and `opclass` index options dumpingRyuta Kamizono2017-12-031-3/+3
* Add support for PostgreSQL operator classes to add_indexGreg Navis2017-11-303-5/+40
* Add new error class `QueryCanceled` which will be raised when canceling state...Ryuta Kamizono2017-11-271-2/+29
* Rename `TransactionTimeout` to more descriptive `LockWaitTimeout` (#31223)Ryuta Kamizono2017-11-271-2/+2
* Merge pull request #30980 from sobrinho/sobrinho/arel-star-ignored-columnsRafael França2017-11-131-8/+8
|\
| * Change tests to use models which don't ignore any columnsJon Moss2017-11-131-8/+8
* | Add new error class `StatementTimeout` which will be raised when statement ti...Ryuta Kamizono2017-11-131-0/+28
* | Raise `TransactionTimeout` when lock wait timeout exceeded for PG adapterRyuta Kamizono2017-11-111-0/+29
* | removed unnecessary semicolonsShuhei Kitagawa2017-10-281-1/+1
|/
* `supports_extensions?` return always true since PostgreSQL 9.1Yasuo Honda2017-10-244-454/+440
* Remove deprecated argument `name` from `#indexes`Rafael Mendonça França2017-10-231-1/+1
* Fix longer sequence name detection for serial columns (#28339)Ryuta Kamizono2017-10-151-0/+32
* `Postgres::OID::Range` serializes to a `Range`, quote in `Quoting`Thomas Cannon2017-09-262-1/+52
* Fix collided sequence name detectionRyuta Kamizono2017-09-181-0/+36
* Add an extra assertion to ensure dumping schema default as expectedRyuta Kamizono2017-09-081-1/+4
* Fix `quote_default_expression` for UUID with array defaultRyuta Kamizono2017-09-081-0/+10
* Prevent extra `SET time zone` in `configure_connection` (#28413)Ryuta Kamizono2017-08-211-0/+7
* Allow `serialize` with a custom coder on `json` and `array` columnsRyuta Kamizono2017-08-131-1/+25
* Move `test_not_compatible_with_serialize_macro` to `JSONSharedTestCases`Ryuta Kamizono2017-08-111-11/+2
* Merge pull request #29520 from kirs/serialize-vs-postgres-native-columnSean Griffin2017-08-042-0/+18
|\