Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
83205404
Commit
83205404
authored
Nov 17, 2014
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update 9.4 release notes for commits through today.
parent
c4f99d20
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
4 deletions
+64
-4
doc/src/sgml/release-9.4.sgml
doc/src/sgml/release-9.4.sgml
+64
-4
No files found.
doc/src/sgml/release-9.4.sgml
View file @
83205404
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<note>
<note>
<title>Release Date</title>
<title>Release Date</title>
<simpara>2014-??-??</simpara>
<simpara>2014-??-??</simpara>
<simpara>Current as of 2014-1
0-05
</simpara>
<simpara>Current as of 2014-1
1-17
</simpara>
<!-- Be sure to remove "delta from 9.4beta" items below before final! -->
<!-- Be sure to remove "delta from 9.4beta" items below before final! -->
</note>
</note>
...
@@ -106,6 +106,23 @@
...
@@ -106,6 +106,23 @@
</para>
</para>
</listitem>
</listitem>
<!-- delta from 9.4beta3, be sure to remove before final: -->
<listitem>
<para>
Fix representation of numeric values in <type>jsonb</> GIN indexes
(Tom Lane)
</para>
<para>
Numeric items within <type>jsonb</> values are converted to strings
for storage in GIN <literal>jsonb_ops</> indexes. In 9.4beta3,
trailing zeroes in such items were mishandled. Beta testers
should <command>REINDEX</> any such indexes after upgrading, to ensure
that searches for numeric values will find the expected rows. Note
that <literal>jsonb_path_ops</> indexes were not affected by this bug.
</para>
</listitem>
<listitem>
<listitem>
<para>
<para>
Tighten checks for multidimensional <link
Tighten checks for multidimensional <link
...
@@ -234,6 +251,22 @@
...
@@ -234,6 +251,22 @@
</para>
</para>
</listitem>
</listitem>
<listitem>
<para>
Ensure that whole-row variables expose the expected column names
to functions that pay attention to column names within composite
arguments (Tom Lane)
</para>
<para>
Constructs like <literal>row_to_json(tab.*)</> now always emit column
names that match the column aliases visible for table <literal>tab</>
at the point of the call. In previous releases the emitted column
names would sometimes be the table's actual column names regardless
of any aliases assigned in the query.
</para>
</listitem>
<listitem>
<listitem>
<para>
<para>
<xref linkend="sql-discard"> now also discards sequence-related state
<xref linkend="sql-discard"> now also discards sequence-related state
...
@@ -413,14 +446,16 @@
...
@@ -413,14 +446,16 @@
<!-- delta from 9.4beta2, be sure to remove before final: -->
<!-- delta from 9.4beta2, be sure to remove before final: -->
<listitem>
<listitem>
<para>
<para>
Update time zone data files to tzdata release 2014
h
for DST law
Update time zone data files to tzdata release 2014
j
for DST law
changes in Russia and elsewhere
changes in Russia and elsewhere
</para>
</para>
<para>
<para>
This change is more significant than most time zone updates because
This change is more significant than most time zone updates because
many Russian zone abbreviations are changing meaning, including IRKT,
many Russian zone abbreviations are changing meaning, including IRKT,
KRAT, MAGT, MSK, NOVT, OMST, SAKT, VLAT, YAKT, and YEKT. Also, IANA
KRAT, MAGT, MSK, NOVT, OMST, SAKT, VLAT, YAKT, and YEKT.
<productname>PostgreSQL</> will now associate the correct UTC offset
with these abbreviations depending on the given date. Also, IANA
has formally recognized abbreviations of the form
has formally recognized abbreviations of the form
A<replaceable>x</>ST/A<replaceable>x</>DT for Australian timezones,
A<replaceable>x</>ST/A<replaceable>x</>DT for Australian timezones,
so adopt those names as part of the <quote>Default</> abbreviation
so adopt those names as part of the <quote>Default</> abbreviation
...
@@ -1422,6 +1457,24 @@
...
@@ -1422,6 +1457,24 @@
</para>
</para>
</listitem>
</listitem>
<listitem>
<para>
Support time zone abbreviations that change from time to time
(Tom Lane)
</para>
<para>
Previously, <productname>PostgreSQL</> assumed that the UTC offset
associated with a time zone abbreviation (such as <literal>EST</>)
never changes in the usage of any particular locale. However this
assumption fails in the real world, so introduce the ability for a
zone abbreviation to represent a UTC offset that sometimes changes.
Update the zone abbreviation definition files to make use of this
feature in timezone locales that have changed the UTC offset of their
abbreviations since 1970 (according to the IANA timezone database).
</para>
</listitem>
<listitem>
<listitem>
<para>
<para>
Allow 5+ digit years for non-<acronym>ISO</> <link
Allow 5+ digit years for non-<acronym>ISO</> <link
...
@@ -2012,7 +2065,7 @@
...
@@ -2012,7 +2065,7 @@
<listitem>
<listitem>
<para>
<para>
Allow <application>psql</> <command>\pset</> with no arguments
Allow <application>psql</>
's
<command>\pset</> with no arguments
to show all settings (Gilles Darold)
to show all settings (Gilles Darold)
</para>
</para>
</listitem>
</listitem>
...
@@ -2241,6 +2294,13 @@
...
@@ -2241,6 +2294,13 @@
Add Test Anything Protocol (<acronym>TAP</>) tests for client
Add Test Anything Protocol (<acronym>TAP</>) tests for client
programs (Peter Eisentraut)
programs (Peter Eisentraut)
</para>
</para>
<para>
Currently, these tests are run by <literal>make check-world</>
only if the <option>--enable-tap-tests</> option was given
to <application>configure</>.
This might become the default in some future release.
</para>
</listitem>
</listitem>
<listitem>
<listitem>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment