|
194 | 194 | </para>
|
195 | 195 |
|
196 | 196 | <para>
|
197 |
| - This was already disabled by default in previous Postgres releases, |
198 |
| - and most modern OpenSSL and <acronym>TLS</acronym> versions no |
199 |
| - longer support it. |
| 197 | + This was already disabled by default in previous |
| 198 | + <productname>PostgreSQL</productname> releases, and most modern |
| 199 | + OpenSSL and <acronym>TLS</acronym> versions no longer support it. |
200 | 200 | </para>
|
201 | 201 | </listitem>
|
202 | 202 |
|
|
213 | 213 | </para>
|
214 | 214 |
|
215 | 215 | <para>
|
216 |
| - This was last used as the default in Postgres 7.3 (year 2002). |
| 216 | + This was last used as the default in |
| 217 | + <productname>PostgreSQL</productname> 7.3 (year 2002). |
217 | 218 | </para>
|
218 | 219 | </listitem>
|
219 | 220 |
|
|
231 | 232 |
|
232 | 233 | <para>
|
233 | 234 | <function>EXTRACT(date)</function> now throws an error for units
|
234 |
| - that are not part of the date data type. |
| 235 | + that are not part of the <type>date</type> data type. |
235 | 236 | </para>
|
236 | 237 | </listitem>
|
237 | 238 |
|
|
395 | 396 | -->
|
396 | 397 |
|
397 | 398 | <para>
|
398 |
| - Improve handling of regular expression back-references (Tom Lane) |
| 399 | + Improve handling of regular expression <link |
| 400 | + linkend="posix-escape-sequences">back-references</link> (Tom Lane) |
399 | 401 | </para>
|
400 | 402 |
|
401 | 403 | <para>
|
|
430 | 432 |
|
431 | 433 | <para>
|
432 | 434 | Require <link linkend="runtime-config-custom">custom server
|
433 |
| - variable</link> names to use only character which are valid for |
| 435 | + variable</link> names to use only characters which are valid for |
434 | 436 | unquoted <acronym>SQL</acronym> identifiers (Tom Lane)
|
435 | 437 | </para>
|
436 | 438 | </listitem>
|
|
481 | 483 | -->
|
482 | 484 |
|
483 | 485 | <para>
|
484 |
| - Pass doubled quote marks in <xref linkend="ecpg"/> |
| 486 | + Pass doubled quote marks in <link linkend="ecpg">ecpg</link> |
485 | 487 | <acronym>SQL</acronym> command strings literally (Tom Lane)
|
486 | 488 | </para>
|
487 | 489 |
|
|
1164 | 1166 |
|
1165 | 1167 | <para>
|
1166 | 1168 | This is useful if only a small percentage of rows is checked on
|
1167 |
| - the inner side. |
| 1169 | + the inner side and is controlled by <xref |
| 1170 | + linkend="guc-enable-resultcache"/>. |
1168 | 1171 | </para>
|
1169 | 1172 | </listitem>
|
1170 | 1173 |
|
|
1211 | 1214 | </para>
|
1212 | 1215 |
|
1213 | 1216 | <para>
|
1214 |
| - The <link |
| 1217 | + <link |
1215 | 1218 | linkend="postgres-fdw"><application>postgres_fdw</application></link>
|
1216 | 1219 | supports these type of scans if <literal>async_capable</literal>
|
1217 | 1220 | is set.
|
|
1614 | 1617 |
|
1615 | 1618 | <para>
|
1616 | 1619 | This is controlled by server variable <xref
|
1617 |
| - linkend="guc-ssl-crl-dir"/> and libpq connection option sslcrldir. |
1618 |
| - Previously only <acronym>CRL</acronym> files could be specified. |
| 1620 | + linkend="guc-ssl-crl-dir"/> and libpq connection option |
| 1621 | + <xref linkend='libpq-connect-sslcrldir'/>. Previously only |
| 1622 | + <acronym>CRL</acronym> files could be specified. |
1619 | 1623 | </para>
|
1620 | 1624 | </listitem>
|
1621 | 1625 |
|
|
1859 | 1863 | </para>
|
1860 | 1864 |
|
1861 | 1865 | <para>
|
1862 |
| - By default, Postgres opens and fsyncs every data file |
1863 |
| - at the start of crash recovery. This new setting, <xref |
| 1866 | + By default, <productname>PostgreSQL</productname> |
| 1867 | + opens and fsyncs every data file at the |
| 1868 | + start of crash recovery. This new setting, <xref |
1864 | 1869 | linkend="guc-recovery-init-sync-method"/><literal>=syncfs</literal>,
|
1865 | 1870 | instead syncs each filesystem used by the database cluster.
|
1866 | 1871 | This allows for faster recovery on systems with many database files.
|
|
2784 | 2789 | </para>
|
2785 | 2790 |
|
2786 | 2791 | <para>
|
2787 |
| - This is similar to how Unicode can be specified in literal string. |
| 2792 | + This is similar to how Unicode can be specified in literal strings. |
2788 | 2793 | </para>
|
2789 | 2794 | </listitem>
|
2790 | 2795 |
|
|
2868 | 2873 | The new syntax is <literal>SUBSTRING(text SIMILAR pattern ESCAPE
|
2869 | 2874 | escapechar)</literal>. The previous standard syntax was
|
2870 | 2875 | <literal>SUBSTRING(text FROM pattern FOR escapechar)</literal>,
|
2871 |
| - and is still supported by Postgres. |
| 2876 | + and is still supported by <productname>PostgreSQL</productname>. |
2872 | 2877 | </para>
|
2873 | 2878 | </listitem>
|
2874 | 2879 |
|
|
2894 | 2899 | <para>
|
2895 | 2900 | Add <link
|
2896 | 2901 | linkend="posix-escape-sequences"><literal>[[:word:]]</literal></link>
|
2897 |
| - as a character class to match \w (Tom Lane) |
| 2902 | + as a character class to match <literal>\w</literal> (Tom Lane) |
2898 | 2903 | </para>
|
2899 | 2904 | </listitem>
|
2900 | 2905 |
|
|
3223 | 3228 | -->
|
3224 | 3229 |
|
3225 | 3230 | <para>
|
3226 |
| - Allow <application>psql</application>'s \df and \do commands to |
3227 |
| - specify function and operator argument types (Greg Sabino Mullane, |
3228 |
| - Tom Lane) |
| 3231 | + Allow <application>psql</application>'s <literal>\df</literal> |
| 3232 | + and <literal>\do</literal> commands to specify function and |
| 3233 | + operator argument types (Greg Sabino Mullane, Tom Lane) |
3229 | 3234 | </para>
|
3230 | 3235 |
|
3231 | 3236 | <para>
|
|
3252 | 3257 | -->
|
3253 | 3258 |
|
3254 | 3259 | <para>
|
3255 |
| - Allow <application>psql</application>'s \dt and \di to show |
3256 |
| - <acronym>TOAST</acronym> tables and their indexes (Justin Pryzby) |
| 3260 | + Allow <application>psql</application>'s <literal>\dt</literal> |
| 3261 | + and <literal>\di</literal> to show <acronym>TOAST</acronym> |
| 3262 | + tables and their indexes (Justin Pryzby) |
3257 | 3263 | </para>
|
3258 | 3264 | </listitem>
|
3259 | 3265 |
|
|
3264 | 3270 | -->
|
3265 | 3271 |
|
3266 | 3272 | <para>
|
3267 |
| - Add <application>psql</application> command \dX to list extended |
3268 |
| - statistics objects (Tatsuro Yamada) |
| 3273 | + Add <application>psql</application> command <literal>\dX</literal> |
| 3274 | + to list extended statistics objects (Tatsuro Yamada) |
3269 | 3275 | </para>
|
3270 | 3276 | </listitem>
|
3271 | 3277 |
|
|
3276 | 3282 | -->
|
3277 | 3283 |
|
3278 | 3284 | <para>
|
3279 |
| - Fix <application>psql</application>'s \dT to understand array |
3280 |
| - syntax and backend grammar aliases, like "int" for "integer" |
3281 |
| - (Greg Sabino Mullane, Tom Lane) |
| 3285 | + Fix <application>psql</application>'s <literal>\dT</literal> to |
| 3286 | + understand array syntax and backend grammar aliases, like "int" |
| 3287 | + for "integer" (Greg Sabino Mullane, Tom Lane) |
3282 | 3288 | </para>
|
3283 | 3289 | </listitem>
|
3284 | 3290 |
|
|
3290 | 3296 |
|
3291 | 3297 | <para>
|
3292 | 3298 | When editing the previous query or a file with
|
3293 |
| - <application>psql</application>'s \e, or using \ef and \ev, ignore |
3294 |
| - the contents if the editor exits without saving (Laurenz Albe) |
| 3299 | + <application>psql</application>'s <literal>\e</literal>, or using |
| 3300 | + <literal>\ef</literal> and <literal>\ev</literal>, ignore the |
| 3301 | + contents if the editor exits without saving (Laurenz Albe) |
3295 | 3302 | </para>
|
3296 | 3303 |
|
3297 | 3304 | <para>
|
|
3306 | 3313 | -->
|
3307 | 3314 |
|
3308 | 3315 | <para>
|
3309 |
| - Improve <application>psql</application>'s handling of \connect |
3310 |
| - with <option>-reuse-previous</option> (Tom Lane) |
| 3316 | + Improve <application>psql</application>'s handling of |
| 3317 | + <literal>\connect</literal> with <option>-reuse-previous</option> |
| 3318 | + (Tom Lane) |
3311 | 3319 | </para>
|
3312 | 3320 |
|
3313 | 3321 | <para>
|
|
3414 | 3422 | Stop <link
|
3415 | 3423 | linkend="pgupgrade"><application>pg_upgrade</application></link>
|
3416 | 3424 | from creating <filename>analyze_new_cluster</filename> script
|
3417 |
| - (Michael Paquier) |
| 3425 | + (Magnus Hagander) |
3418 | 3426 | </para>
|
3419 | 3427 |
|
3420 | 3428 | <para>
|
|
3739 | 3747 | -->
|
3740 | 3748 |
|
3741 | 3749 | <para>
|
3742 |
| - Allow <function>pgstattuple_approx()</function> to report on |
3743 |
| - <acronym>TOAST</acronym> tables (Peter Eisentraut) |
| 3750 | + Allow <link |
| 3751 | + linkend="pgstattuple"><function>pgstattuple_approx()</function></link> |
| 3752 | + to report on <acronym>TOAST</acronym> tables (Peter Eisentraut) |
3744 | 3753 | </para>
|
3745 | 3754 | </listitem>
|
3746 | 3755 |
|
|
0 commit comments