Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4d30d4b

Browse files
committed
doc: improve 9.4 release notes
Patch by Andres Freund
1 parent0c19aab commit4d30d4b

File tree

1 file changed

+33
-18
lines changed

1 file changed

+33
-18
lines changed

‎doc/src/sgml/release-9.4.sgml

Lines changed: 33 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<listitem>
3131
<para>
3232
<link linkend="logicaldecoding">Logical decoding</link> allows database
33-
changes to be streamed out in customizable format
33+
changes to be streamed out inacustomizable format
3434
</para>
3535
</listitem>
3636

@@ -298,6 +298,12 @@
298298
</para>
299299
</listitem>
300300

301+
<listitem>
302+
<para>
303+
<command>DISCARD ALL</> now also discards the state of sequences.
304+
</para>
305+
</listitem>
306+
301307
</itemizedlist>
302308

303309
</sect2>
@@ -1005,7 +1011,6 @@
10051011
</para>
10061012

10071013
<para>
1008-
<!-- FIXME: drop? -->
10091014
This was added so views that select from a table with zero columns
10101015
can be dumped correctly.
10111016
</para>
@@ -1028,7 +1033,6 @@
10281033
</para>
10291034

10301035
<para>
1031-
<!-- FIXME: compatibility break entry? -->
10321036
<command>DISCARD ALL</> will now also discard such information.
10331037
</para>
10341038
</listitem>
@@ -1199,6 +1203,11 @@
11991203
AGGREGATE</></link> to supply the size of the aggregate's
12001204
transition state data (Hadi Moshayedi)
12011205
</para>
1206+
1207+
<para>
1208+
This allows the optimizer to better estimate how much memory will be
1209+
used by aggregates.
1210+
</para>
12021211
</listitem>
12031212

12041213
</itemizedlist>
@@ -1218,7 +1227,7 @@
12181227

12191228
<listitem>
12201229
<para>
1221-
Allowthechangingofforeign key constraint via <link
1230+
Allow changing foreign key constraintdeferrability via <link
12221231
linkend="SQL-ALTERTABLE"><command>ALTER TABLE</></link>
12231232
... <literal>ALTER CONSTRAINT</> (Simon Riggs)
12241233
</para>
@@ -1254,7 +1263,7 @@
12541263

12551264
<listitem>
12561265
<para>
1257-
Fully-implement the <link
1266+
Fullyimplement the <link
12581267
linkend="datatype-line"><type>line</></link> data type (Peter
12591268
Eisentraut)
12601269
</para>
@@ -1472,7 +1481,7 @@
14721481
<para>
14731482
Add function <link
14741483
linkend="functions-admin-dblocation"><function>pg_filenode_relation()</></link>
1475-
to allow for more efficientfilenode to relationlookups (Andres
1484+
to allow for more efficientlookup of relationnames from filenodes (Andres
14761485
Freund)
14771486
</para>
14781487
</listitem>
@@ -1543,10 +1552,13 @@
15431552
</listitem>
15441553

15451554
<listitem>
1546-
<!-- FIXME -->
15471555
<para>
15481556
Allow polymorphic aggregates to have non-polymorphic state data
1549-
types ? (Tom Lane)
1557+
types (Tom Lane)
1558+
</para>
1559+
<para>
1560+
This allows the declaration of aggregates like the built-in
1561+
aggregate <function>array_agg()</> in SQL.
15501562
</para>
15511563
</listitem>
15521564

@@ -1772,7 +1784,8 @@
17721784

17731785
<listitem>
17741786
<para>
1775-
Allow field wrapping to <application>psql</>'s "extended" mode
1787+
Add ability to wrap long lines in <application>psql</>'s
1788+
<literal>expanded</> mode by using <command>\pset format wrapped</>
17761789
(Sergey Muraviov)
17771790
</para>
17781791
</listitem>
@@ -2218,7 +2231,8 @@
22182231
<listitem>
22192232
<para>
22202233
Add <link linkend="pgprewarm"><application>pg_prewarm</></link>
2221-
to preload relation data into the shared buffer cache (Robert Haas)
2234+
extension to preload relation data into the shared buffer cache
2235+
(Robert Haas)
22222236
</para>
22232237

22242238
<para>
@@ -2243,7 +2257,7 @@
22432257

22442258
<listitem>
22452259
<para>
2246-
Addlogging oftrigger execution to <link
2260+
Addoption to includetrigger execution time to <link
22472261
linkend="auto-explain"><application>auto_explain</></link>
22482262
(Horiguchi Kyotaro)
22492263
</para>
@@ -2279,9 +2293,10 @@
22792293

22802294
<listitem>
22812295
<para>
2282-
Improve indexing of <link
2283-
linkend="pgtrgm"><application>pg_trgm</></link> values to
2284-
discourage indexing whitespace (Alexander Korotkov)
2296+
Improve <link linkend="pgtrgm"><application>pg_trgm</>'s</link>
2297+
generation of trigrams for indexed regular expression searches by
2298+
discouraging the indexing of trigrams containing whitespace (Alexander
2299+
Korotkov)
22852300
</para>
22862301
</listitem>
22872302

@@ -2328,7 +2343,7 @@
23282343

23292344
<listitem>
23302345
<para>
2331-
Allow pgbench to process script files of any line length (Sawada
2346+
Allow<application>pgbench</> to process script files of any line length (Sawada
23322347
Masahiko)
23332348
</para>
23342349

@@ -2339,20 +2354,20 @@
23392354

23402355
<listitem>
23412356
<para>
2342-
Add <application>pg_bench</> option (<option>--rate</>) to control
2357+
Add <application>pgbench</> option (<option>--rate</>) to control
23432358
the transaction rate (Fabien Coelho)
23442359
</para>
23452360
</listitem>
23462361

23472362
<listitem>
23482363
<para>
2349-
Add <option>--progress</> output option to pgbench (Fabien Coelho)
2364+
Add <option>--progress</> output option to<application>pgbench</> (Fabien Coelho)
23502365
</para>
23512366
</listitem>
23522367

23532368
<listitem>
23542369
<para>
2355-
Add long options to pgbench (Fabien Coelho)
2370+
Add long options to<application>pgbench</> (Fabien Coelho)
23562371
</para>
23572372
</listitem>
23582373

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp