1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix typo s/PostgresSQL/PostgreSQL/ [ci skip]

This commit is contained in:
Ryuta Kamizono 2021-04-25 20:09:39 +09:00
parent 90db24436a
commit 2d040e756e
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@
* Add setting for enumerating column names in SELECT statements.
Adding a column to a PostgresSQL database, for example, while the application is running can
Adding a column to a PostgreSQL database, for example, while the application is running can
change the result of wildcard `SELECT *` queries, which invalidates the result
of cached prepared statements and raises a `PreparedStatementCacheExpired` error.

View file

@ -473,7 +473,7 @@ in controllers and views. This defaults to `false`.
* `config.active_record.queues.destroy` allows specifying the Active Job queue to use for destroy jobs. When this option is `nil`, purge jobs are sent to the default Active Job queue (see `config.active_job.default_queue_name`). It defaults to `nil`.
* `config.active_record.enumerate_columns_in_select_statements` when true, will always include column names in `SELECT` statements, and avoid wildcard `SELECT * FROM ...` queries. This avoids prepared statement cache errors when adding columns to a PostgresSQL database for example. Defaults to `false`.
* `config.active_record.enumerate_columns_in_select_statements` when true, will always include column names in `SELECT` statements, and avoid wildcard `SELECT * FROM ...` queries. This avoids prepared statement cache errors when adding columns to a PostgreSQL database for example. Defaults to `false`.
The MySQL adapter adds one additional configuration option: