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
6ad4249b
Commit
6ad4249b
authored
Mar 21, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more 9.0 release note documentation links.
parent
4748faa5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
94 additions
and
61 deletions
+94
-61
doc/src/sgml/plpython.sgml
doc/src/sgml/plpython.sgml
+2
-2
doc/src/sgml/ref/create_type.sgml
doc/src/sgml/ref/create_type.sgml
+2
-2
doc/src/sgml/release-9.0.sgml
doc/src/sgml/release-9.0.sgml
+90
-57
No files found.
doc/src/sgml/plpython.sgml
View file @
6ad4249b
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.4
6 2010/03/18 19:43:03 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.4
7 2010/03/21 02:24:29 momjian
Exp $ -->
<chapter id="plpython">
<chapter id="plpython">
<title>PL/Python - Python Procedural Language</title>
<title>PL/Python - Python Procedural Language</title>
...
@@ -397,7 +397,7 @@ $$ LANGUAGE plpythonu;
...
@@ -397,7 +397,7 @@ $$ LANGUAGE plpythonu;
</para>
</para>
</sect2>
</sect2>
<sect2>
<sect2
id="plpython-arrays"
>
<title>Arrays, Lists</title>
<title>Arrays, Lists</title>
<para>
<para>
SQL array values are passed into PL/Python as a Python list. To
SQL array values are passed into PL/Python as a Python list. To
...
...
doc/src/sgml/ref/create_type.sgml
View file @
6ad4249b
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_type.sgml,v 1.8
0 2009/12/26 16:55:21
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_type.sgml,v 1.8
1 2010/03/21 02:24:29
momjian Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -84,7 +84,7 @@ CREATE TYPE <replaceable class="parameter">name</replaceable>
...
@@ -84,7 +84,7 @@ CREATE TYPE <replaceable class="parameter">name</replaceable>
</para>
</para>
</refsect2>
</refsect2>
<refsect2>
<refsect2
id="SQL-CREATETYPE-enum"
>
<title>Enumerated Types</title>
<title>Enumerated Types</title>
<para>
<para>
...
...
doc/src/sgml/release-9.0.sgml
View file @
6ad4249b
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.
6 2010/03/21 00:43:40
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.
7 2010/03/21 02:24:29
momjian Exp $ -->
<sect1 id="release-9-0">
<sect1 id="release-9-0">
...
@@ -53,9 +53,10 @@
...
@@ -53,9 +53,10 @@
<listitem>
<listitem>
<para>
<para>
Remove server variable <varname>regex_flavor</>, which was defaulted
Remove server variable <varname>regex_flavor</>, which
to <literal>advanced</> (e.g. Perl-regex compatible) for many
was defaulted to <link
years (Tom)
linkend="posix-syntax-details"><literal>advanced</></link>
(e.g. Perl-regex compatible) for many years (Tom)
</para>
</para>
</listitem>
</listitem>
...
@@ -69,8 +70,9 @@
...
@@ -69,8 +70,9 @@
<listitem>
<listitem>
<para>
<para>
When querying a parent table, do not do additional permission
When querying a <link linkend="ddl-inherit">parent table</link>,
checks on child tables returned as part of the query (Peter)
do not do additional permission checks on child tables
returned as part of the query (Peter)
</para>
</para>
<para>
<para>
...
@@ -80,8 +82,8 @@
...
@@ -80,8 +82,8 @@
<listitem>
<listitem>
<para>
<para>
Have fractional seconds
truncate rather than round when using
Have fractional seconds
conversion truncate rather than
float-based dates/times (Tom)
round when using
float-based dates/times (Tom)
</para>
</para>
</listitem>
</listitem>
...
@@ -129,8 +131,9 @@
...
@@ -129,8 +131,9 @@
<listitem>
<listitem>
<para>
<para>
Do not allow <function>substring()</> to have a negative third
Do not allow <link
length, per the SQL standard (Tom)
linkend="functions-string-sql"><function>substring()</></link>
to have a negative third length, per the SQL standard (Tom)
</para>
</para>
</listitem>
</listitem>
...
@@ -283,15 +286,16 @@
...
@@ -283,15 +286,16 @@
<para>
<para>
Allow per-tablespace sequential and random page cost variables
Allow per-tablespace sequential and random page cost variables
(<varname>seq_page_cost</>/(<varname>random_page_cost</>)) via
(<varname>seq_page_cost</>/(<varname>random_page_cost</>)) via
<command>ALTER TABLESPACE
<
link linkend="SQL-ALTERTABLESPACE"><
command>ALTER TABLESPACE
... SET/RESET</> (Robert Haas)
... SET/RESET</>
</link>
(Robert Haas)
</para>
</para>
</listitem>
</listitem>
<listitem>
<listitem>
<para>
<para>
Improve performance of <command>TRUNCATE</> when used in the same
Improve performance of <link
transaction as table creation (Tom)
linkend="SQL-TRUNCATE"><command>TRUNCATE</></link> when
used in the same transaction as table creation (Tom)
</para>
</para>
</listitem>
</listitem>
...
@@ -317,7 +321,8 @@
...
@@ -317,7 +321,8 @@
<listitem>
<listitem>
<para>
<para>
Remove unnecessary outer joins (Robert Haas)
Remove unnecessary <link linkend="queries-join">outer
joins</link> (Robert Haas)
</para>
</para>
<para>
<para>
...
@@ -336,7 +341,7 @@
...
@@ -336,7 +341,7 @@
</sect4>
</sect4>
<sect4>
<sect4>
<title>
GEQO
</title>
<title>
<link linkend="geqo">GEQO</link>
</title>
<itemizedlist>
<itemizedlist>
<listitem>
<listitem>
...
@@ -374,8 +379,8 @@
...
@@ -374,8 +379,8 @@
<listitem>
<listitem>
<para>
<para>
Improve <
command>ANALYZE</> to support inheritance-tree statistics
Improve <
link linkend="SQL-ANALYZE"><command>ANALYZE</></link>
(Tom)
to support inheritance-tree statistics
(Tom)
</para>
</para>
<para>
<para>
...
@@ -385,7 +390,8 @@
...
@@ -385,7 +390,8 @@
<listitem>
<listitem>
<para>
<para>
Improve autovacuum detection of when re-analyze is necessary (Tom)
Improve <link linkend="routine-vacuuming">autovacuum</link>
detection of when re-analyze is necessary (Tom)
</para>
</para>
</listitem>
</listitem>
...
@@ -406,7 +412,8 @@
...
@@ -406,7 +412,8 @@
<listitem>
<listitem>
<para>
<para>
Allow setting of distinct statistics using <command>ALTER TABLE</>
Allow setting of distinct statistics using <link
linkend="SQL-ALTERTABLE"><command>ALTER TABLE</></link>
(Robert Haas)
(Robert Haas)
</para>
</para>
...
@@ -577,8 +584,9 @@
...
@@ -577,8 +584,9 @@
<listitem>
<listitem>
<para>
<para>
Do <command>SELECT FOR UPDATE</>/<literal>SHARE</> processing
Do <link linkend="SQL-FOR-UPDATE-SHARE"><command>SELECT
after applying <literal>LIMIT</>, so the number of rows returned
FOR UPDATE</>/<literal>SHARE</></link> processing after
applying <literal>LIMIT</>, so the number of rows returned
is always predictable (Tom)
is always predictable (Tom)
</para>
</para>
...
@@ -593,8 +601,9 @@
...
@@ -593,8 +601,9 @@
<listitem>
<listitem>
<para>
<para>
Allow mixing of traditional and SQL-standard
Allow mixing of traditional and SQL-standard <link
<literal>LIMIT</>/<literal>OFFSET</> syntax in the same query (Tom)
linkend="SQL-LIMIT"><literal>LIMIT</>/<literal>OFFSET</></link>
syntax in the same query (Tom)
</para>
</para>
</listitem>
</listitem>
...
@@ -659,22 +668,25 @@
...
@@ -659,22 +668,25 @@
<listitem>
<listitem>
<para>
<para>
Speed up <command>CREATE DATABASE</> by deferring flushes to disk
Speed up <link linkend="SQL-CREATEDATABASE"><command>CREATE
(Andres Freund, Greg Stark)
DATABASE</></link> by deferring flushes to disk (Andres
Freund, Greg Stark)
</para>
</para>
</listitem>
</listitem>
<listitem>
<listitem>
<para>
<para>
Allow
comments only on columns of tables, views, and composite
Allow
<link linkend="SQL-COMMENT">comments</link> only on
types, not other objects like indexes and <acronym>TOAST</> tables
columns of tables, views, and composite types, not other
(Tom)
objects like indexes and <acronym>TOAST</> tables
(Tom)
</para>
</para>
</listitem>
</listitem>
<listitem>
<listitem>
<para>
<para>
Allow the creation of enumerate types with no labels (Bruce)
Allow the creation of <link
linkend="SQL-CREATETYPE-enum">enumerate types</link> with
no labels (Bruce)
</para>
</para>
<para>
<para>
...
@@ -685,7 +697,7 @@
...
@@ -685,7 +697,7 @@
<listitem>
<listitem>
<para>
<para>
Have columns defined with storage type <literal>MAIN</> remain on
Have columns defined with storage type <literal>MAIN</> remain on
main heap page unless it cannot fit (Kevin Grittner)
the
main heap page unless it cannot fit (Kevin Grittner)
</para>
</para>
<para>
<para>
...
@@ -779,7 +791,8 @@
...
@@ -779,7 +791,8 @@
<listitem>
<listitem>
<para>
<para>
Add deferrable unique constraints (Dean Rasheed)
Add <link linkend="SQL-CREATETABLE-compatibility">deferrable
unique constraints</link> (Dean Rasheed)
</para>
</para>
<para>
<para>
...
@@ -797,10 +810,12 @@
...
@@ -797,10 +810,12 @@
</para>
</para>
<para>
<para>
This is enabled with the <command>CREATE TABLE CONSTRAINT ...
This is enabled with the <link
EXCLUDE</> clause. While uniqueness checks could be specified
linkend="SQL-CREATETABLE-description"><command>CREATE
using this syntax, the real value of this features is in using
TABLE CONSTRAINT ... EXCLUDE</></link> clause. While
complex operators that do not have built-in constraints.
uniqueness checks could be specified using this syntax,
the real value of this features is in using complex
operators that do not have built-in constraints.
</para>
</para>
</listitem>
</listitem>
...
@@ -828,15 +843,15 @@
...
@@ -828,15 +843,15 @@
<para>
<para>
Add the ability to make mass permission changes per
Add the ability to make mass permission changes per
schema using the new <link
schema using the new <link
linkend="SQL-GRANT"><command>GRANT</>
</link>
/<command>REVOKE
linkend="SQL-GRANT"><command>GRANT</>/<command>REVOKE
IN SCHEMA</> clause (Petr Jelinek)
IN SCHEMA</>
</link>
clause (Petr Jelinek)
</para>
</para>
</listitem>
</listitem>
<listitem>
<listitem>
<para>
<para>
Add the ability to control large object permissions with
Add the ability to control large object permissions with
<command>GRANT</>/<command>REVOKE
</>(KaiGai Kohei)
<command>GRANT</>/<command>REVOKE</>(KaiGai Kohei)
</para>
</para>
</listitem>
</listitem>
...
@@ -853,8 +868,10 @@
...
@@ -853,8 +868,10 @@
<listitem>
<listitem>
<para>
<para>
Have <command>LISTEN</>/<command>NOTIFY</> store events in a memory
Have <link linkend="SQL-LISTEN"><command>LISTEN</></link>/<link
queue, rather than a system table (Joachim Wieland)
linkend="SQL-NOTIFY"><command>NOTIFY</></link> store events
in a memory queue, rather than a system table (Joachim
Wieland)
</para>
</para>
<para>
<para>
...
@@ -871,7 +888,8 @@
...
@@ -871,7 +888,8 @@
<listitem>
<listitem>
<para>
<para>
Allow <command>CLUSTER</> on all system tables (Tom)
Allow <link linkend="SQL-CLUSTER"><command>CLUSTER</></link>
on all system tables (Tom)
</para>
</para>
<para>
<para>
...
@@ -923,8 +941,9 @@
...
@@ -923,8 +941,9 @@
</para>
</para>
<para>
<para>
log_*_stats log output, e.g. <varname>log_statement_stats</>, no
log_*_stats log output, e.g. <xref
longer shows this information.
linkend="runtime-config-statistics-monitor">, no longer shows
this information.
</para>
</para>
</listitem>
</listitem>
...
@@ -1072,7 +1091,7 @@
...
@@ -1072,7 +1091,7 @@
</itemizedlist>
</itemizedlist>
<sect4>
<sect4>
<title>
Full Text Search
</title>
<title>
<link linkend="textsearch">Full Text Search</link>
</title>
<itemizedlist>
<itemizedlist>
<listitem>
<listitem>
...
@@ -1162,8 +1181,9 @@
...
@@ -1162,8 +1181,9 @@
<listitem>
<listitem>
<para>
<para>
Correct calculations of "overlap" and "contains" operations over
Correct calculations of <link
polygons (Teodor)
linkend="functions-geometry-op-table">"overlap"</link>
and "contains" operations over polygons (Teodor)
</para>
</para>
</listitem>
</listitem>
...
@@ -1267,7 +1287,8 @@
...
@@ -1267,7 +1287,8 @@
<listitem>
<listitem>
<para>
<para>
Have information schema properly display date type octet lengths
Have <link linkend="information-schema">information
schema</link> properly display date type octet lengths
(Peter)
(Peter)
</para>
</para>
...
@@ -1439,10 +1460,12 @@
...
@@ -1439,10 +1460,12 @@
<listitem>
<listitem>
<para>
<para>
Add new PL/Perl functions: <function>quote_literal()</>,
Add new PL/Perl functions: <link
linkend="plperl-utility-functions"><function>quote_literal()</></link>,
<function>quote_nullable()</>, <function>quote_ident()</>,
<function>quote_nullable()</>, <function>quote_ident()</>,
<function>encode_bytea()</>, <function>decode_bytea()</>,
<function>encode_bytea()</>, <function>decode_bytea()</>,
<function>looks_like_number()</>, <function>encode_array_literal()</>,
<function>looks_like_number()</>,
<function>encode_array_literal()</>,
<function>encode_array_constructor()</> (Tim Bunce)
<function>encode_array_constructor()</> (Tim Bunce)
</para>
</para>
</listitem>
</listitem>
...
@@ -1479,6 +1502,11 @@
...
@@ -1479,6 +1502,11 @@
<para>
<para>
Allow <command>use strict</> in PL/Perl (Tim Bunce)
Allow <command>use strict</> in PL/Perl (Tim Bunce)
</para>
</para>
<para>
This can be enabled with the server variable <xref
linkend="guc-plperl-use-strict">.
</para>
</listitem>
</listitem>
<listitem>
<listitem>
...
@@ -1564,7 +1592,8 @@
...
@@ -1564,7 +1592,8 @@
<listitem>
<listitem>
<para>
<para>
Add array parameter/return support to PL/Python (Peter)
Add <link linkend="plpython-arrays">array parameter/return
support</link> to PL/Python (Peter)
</para>
</para>
</listitem>
</listitem>
...
@@ -1640,8 +1669,9 @@
...
@@ -1640,8 +1669,9 @@
<listitem>
<listitem>
<para>
<para>
Fix <command>psql --file -</> to properly honor
Fix <command>psql --file -</> to properly honor <link
<option>--single-transaction</> (Bruce)
linkend="R1-APP-PSQL-3"><option>--single-transaction</></link>
(Bruce)
</para>
</para>
</listitem>
</listitem>
...
@@ -2219,8 +2249,9 @@
...
@@ -2219,8 +2249,9 @@
<listitem>
<listitem>
<para>
<para>
Add a new <literal>ERRCODE_INVALID_PASSWORD</> <literal>SQLSTATE</> error
Add a new <link
code (Bruce)
linkend="errcodes-table"><literal>ERRCODE_INVALID_PASSWORD</></link>
<literal>SQLSTATE</> error code (Bruce)
</para>
</para>
</listitem>
</listitem>
...
@@ -2409,8 +2440,10 @@
...
@@ -2409,8 +2440,10 @@
<listitem>
<listitem>
<para>
<para>
Add <command>\shell</> and <command>\setshell</> meta commands to
Add <command>\shell</> and <command>\setshell</> meta
<filename>/contrib/pgbench</> (Michael Paquier)
commands to <link
linkend="pgbench"><filename>/contrib/pgbench</></link>
(Michael Paquier)
</para>
</para>
</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