Skip to content

Commit

Permalink
Passage des identifiants en minuscule.
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Oct 14, 2010
1 parent fb43bd7 commit ddb6fa8
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions postgresql/release-9.0.xml
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@
<listitem>
<para>
Easier database object permissions management. <link
linkend="SQL-GRANT"><command>GRANT</command>/<command>REVOKE IN
linkend="sql-grant"><command>GRANT</command>/<command>REVOKE IN
SCHEMA</command></link> supports mass permissions changes on existing objects,
while <link linkend="SQL-ALTERDEFAULTPRIVILEGES"><command>ALTER DEFAULT
while <link linkend="sql-alterdefaultprivileges"><command>ALTER DEFAULT
PRIVILEGES</command></link> allows control of privileges for objects created in
the future. Large objects (BLOBs) now support permissions management as
well.
Expand All @@ -196,7 +196,7 @@
<listitem>
<para>
Broadly enhanced stored procedure support.
The <link linkend="SQL-DO"><command>DO</command></link> statement supports
The <link linkend="sql-do"><command>DO</command></link> statement supports
ad-hoc or <quote>anonymous</quote> code blocks.
Functions can now be called using named parameters.
<link linkend="plpgsql">PL/pgSQL</link> is now installed by default, and
Expand Down Expand Up @@ -225,14 +225,14 @@
<para>
New trigger features, including
SQL-standard-compliant <link
linkend="SQL-CREATETRIGGER">per-column triggers</link> and
linkend="sql-createtrigger">per-column triggers</link> and
conditional trigger execution.
</para>
</listitem>

<listitem>
<para>
<link linkend="SQL-CREATETABLE-compatibility">Deferrable
<link linkend="sql-createtable-compatibility">Deferrable
unique constraints</link>. Mass updates to unique keys are now possible
without trickery.
</para>
Expand All @@ -258,8 +258,8 @@
<listitem>
<para>
New high-performance implementation of the
<link linkend="SQL-LISTEN"><command>LISTEN</command></link>/<link
linkend="SQL-NOTIFY"><command>NOTIFY</command></link> feature.
<link linkend="sql-listen"><command>LISTEN</command></link>/<link
linkend="sql-notify"><command>NOTIFY</command></link> feature.
Pending events are now stored in a memory-based queue rather than
a table. Also, a <quote>payload</quote> string can be sent with each
event, rather than transmitting just an event name as before.
Expand All @@ -269,7 +269,7 @@
<listitem>
<para>
New implementation of
<link linkend="SQL-VACUUM"><command>VACUUM FULL</command></link>.
<link linkend="sql-vacuum"><command>VACUUM FULL</command></link>.
This command now rewrites the entire table and indexes, rather than
moving individual rows to compact space. It is substantially faster
in most cases, and no longer results in index bloat.
Expand All @@ -295,7 +295,7 @@

<listitem>
<para>
<link linkend="SQL-EXPLAIN "><command>EXPLAIN</command></link> enhancements.
<link linkend="sql-explain"><command>EXPLAIN</command></link> enhancements.
The output is now available in JSON, XML, or YAML format, and includes
buffer utilization and other data not previously available.
</para>
Expand Down Expand Up @@ -729,7 +729,7 @@
<para>
Allow per-tablespace values to be set for sequential and random page
cost estimates (<varname>seq_page_cost</varname>/<varname>random_page_cost</varname>)
via <link linkend="SQL-ALTERTABLESPACE"><command>ALTER TABLESPACE
via <link linkend="sql-altertablespace"><command>ALTER TABLESPACE
... SET/RESET</command></link> (Robert Haas)
</para>
</listitem>
Expand All @@ -750,7 +750,7 @@
<listitem>
<para>
Improve performance of <link
linkend="SQL-TRUNCATE"><command>TRUNCATE</command></link> when
linkend="sql-truncate"><command>TRUNCATE</command></link> when
the table was created or truncated earlier in the same transaction
(Tom Lane)
</para>
Expand Down Expand Up @@ -856,7 +856,7 @@

<listitem>
<para>
Improve <link linkend="SQL-ANALYZE"><command>ANALYZE</command></link>
Improve <link linkend="sql-analyze"><command>ANALYZE</command></link>
to support inheritance-tree statistics (Tom Lane)
</para>

Expand Down Expand Up @@ -893,7 +893,7 @@
<listitem>
<para>
Allow setting of number-of-distinct-values statistics using <link
linkend="SQL-ALTERTABLE"><command>ALTER TABLE</command></link>
linkend="sql-altertable"><command>ALTER TABLE</command></link>
(Robert Haas)
</para>

Expand Down Expand Up @@ -1149,7 +1149,7 @@

<listitem>
<para>
Perform <link linkend="SQL-FOR-UPDATE-SHARE"><command>SELECT
Perform <link linkend="sql-for-update-share"><command>SELECT
FOR UPDATE</command>/<literal>SHARE</literal></link> processing after
applying <literal>LIMIT</literal>, so the number of rows returned
is always predictable (Tom Lane)
Expand All @@ -1167,15 +1167,15 @@
<listitem>
<para>
Allow mixing of traditional and SQL-standard <link
linkend="SQL-LIMIT"><literal>LIMIT</literal>/<literal>OFFSET</literal></link>
linkend="sql-limit"><literal>LIMIT</literal>/<literal>OFFSET</literal></link>
syntax (Tom Lane)
</para>
</listitem>

<listitem>
<para>
Extend the supported frame options in <link
linkend="SQL-WINDOW">window functions</link> (Hitoshi
linkend="sql-window">window functions</link> (Hitoshi
Harada)
</para>

Expand Down Expand Up @@ -1237,15 +1237,15 @@

<listitem>
<para>
Speed up <link linkend="SQL-CREATEDATABASE"><command>CREATE
Speed up <link linkend="sql-createdatabase"><command>CREATE
DATABASE</command></link> by deferring flushes to disk (Andres
Freund, Greg Stark)
</para>
</listitem>

<listitem>
<para>
Allow <link linkend="SQL-COMMENT">comments</link> on
Allow <link linkend="sql-comment">comments</link> on
columns of tables, views, and composite types only, not other
relation types such as indexes and <acronym>TOAST</acronym> tables (Tom Lane)
</para>
Expand All @@ -1254,7 +1254,7 @@
<listitem>
<para>
Allow the creation of <link
linkend="SQL-CREATETYPE-enum">enumerated types</link> containing
linkend="sql-createtype-enum">enumerated types</link> containing
no values (Bruce Momjian)
</para>
</listitem>
Expand Down Expand Up @@ -1312,7 +1312,7 @@
</sect4>

<sect4>
<title><link linkend="SQL-CREATETABLE"><command>CREATE TABLE</command></link></title>
<title><link linkend="sql-createtable"><command>CREATE TABLE</command></link></title>

<itemizedlist>

Expand Down Expand Up @@ -1356,7 +1356,7 @@

<listitem>
<para>
Add <link linkend="SQL-CREATETABLE-compatibility">deferrable
Add <link linkend="sql-createtable-compatibility">deferrable
unique constraints</link> (Dean Rasheed)
</para>

Expand All @@ -1383,7 +1383,7 @@
<para>
Exclusion constraints generalize uniqueness constraints by allowing
arbitrary comparison operators, not just equality. They are created
with the <link linkend="SQL-CREATETABLE-EXCLUDE"><command>CREATE
with the <link linkend="sql-createtable-exclude"><command>CREATE
TABLE CONSTRAINT ... EXCLUDE</command></link> clause.
The most common use of exclusion constraints is to specify that column
entries must not overlap, rather than simply not be equal. This is
Expand Down Expand Up @@ -1418,7 +1418,7 @@
<para>
Add the ability to make mass permission changes across a whole
schema using the new <link
linkend="SQL-GRANT"><command>GRANT</command>/<command>REVOKE
linkend="sql-grant"><command>GRANT</command>/<command>REVOKE
IN SCHEMA</command></link> clause (Petr Jelinek)
</para>

Expand All @@ -1431,7 +1431,7 @@

<listitem>
<para>
Add <link linkend="SQL-ALTERDEFAULTPRIVILEGES"><command>ALTER
Add <link linkend="sql-alterdefaultprivileges"><command>ALTER
DEFAULT PRIVILEGES</command></link> command to control privileges
of objects created later (Petr Jelinek)
</para>
Expand Down Expand Up @@ -1470,8 +1470,8 @@

<listitem>
<para>
Make <link linkend="SQL-LISTEN"><command>LISTEN</command></link>/<link
linkend="SQL-NOTIFY"><command>NOTIFY</command></link> store pending events
Make <link linkend="sql-listen"><command>LISTEN</command></link>/<link
linkend="sql-notify"><command>NOTIFY</command></link> store pending events
in a memory queue, rather than in a system table (Joachim
Wieland)
</para>
Expand All @@ -1484,7 +1484,7 @@

<listitem>
<para>
Allow <link linkend="SQL-NOTIFY"><command>NOTIFY</command></link>
Allow <link linkend="sql-notify"><command>NOTIFY</command></link>
to pass an optional <quote>payload</quote> string to listeners
(Joachim Wieland)
</para>
Expand All @@ -1498,7 +1498,7 @@

<listitem>
<para>
Allow <link linkend="SQL-CLUSTER"><command>CLUSTER</command></link>
Allow <link linkend="sql-cluster"><command>CLUSTER</command></link>
on all per-database system catalogs (Tom Lane)
</para>

Expand All @@ -1510,7 +1510,7 @@
</itemizedlist>

<sect4>
<title><link linkend="SQL-COPY"><command>COPY</command></link></title>
<title><link linkend="sql-copy"><command>COPY</command></link></title>

<itemizedlist>

Expand Down Expand Up @@ -1543,7 +1543,7 @@
</sect4>

<sect4>
<title><link linkend="SQL-EXPLAIN"><command>EXPLAIN</command></link></title>
<title><link linkend="sql-explain"><command>EXPLAIN</command></link></title>

<itemizedlist>

Expand Down Expand Up @@ -1598,7 +1598,7 @@
</sect4>

<sect4>
<title><link linkend="SQL-VACUUM"><command>VACUUM</command></link></title>
<title><link linkend="sql-vacuum"><command>VACUUM</command></link></title>

<itemizedlist>

Expand Down Expand Up @@ -1642,7 +1642,7 @@
<listitem>
<para>
Allow an index to be named automatically by omitting the index name in
<link linkend="SQL-CREATEINDEX"><command>CREATE INDEX</command></link>
<link linkend="sql-createindex"><command>CREATE INDEX</command></link>
(Tom Lane)
</para>
</listitem>
Expand Down Expand Up @@ -2022,7 +2022,7 @@
<listitem>
<para>
Support execution of anonymous code blocks using the <link
linkend="SQL-DO"><command>DO</command></link> statement
linkend="sql-do"><command>DO</command></link> statement
(Petr Jelinek, Joshua Tolley, Hannu Valtonen)
</para>

Expand All @@ -2036,7 +2036,7 @@
<listitem>
<para>
Implement SQL-standard-compliant <link
linkend="SQL-CREATETRIGGER">per-column triggers</link>
linkend="sql-createtrigger">per-column triggers</link>
(Itagaki Takahiro)
</para>

Expand All @@ -2050,7 +2050,7 @@
<listitem>
<para>
Add the <literal>WHEN</literal> clause to <link
linkend="SQL-CREATETRIGGER"><command>CREATE TRIGGER</command></link>
linkend="sql-createtrigger"><command>CREATE TRIGGER</command></link>
to allow control over whether a trigger is fired (Itagaki
Takahiro)
</para>
Expand All @@ -2076,7 +2076,7 @@
<listitem>
<para>
Add the <literal>OR REPLACE</literal> clause to <link
linkend="SQL-CREATELANGUAGE"><command>CREATE LANGUAGE</command></link>
linkend="sql-createlanguage"><command>CREATE LANGUAGE</command></link>
(Tom Lane)
</para>

Expand Down Expand Up @@ -2378,22 +2378,22 @@ if TG_OP = 'INSERT' and NEW.col1 = ... then
<listitem>
<para>
Add an <option>--analyze-only</option> option to <link
linkend="APP-VACUUMDB"><command>vacuumdb</command></link>, to analyze without
linkend="app-vacuumdb"><command>vacuumdb</command></link>, to analyze without
vacuuming (Bruce Momjian)
</para>
</listitem>

</itemizedlist>

<sect4>
<title><link linkend="APP-PSQL"><application>psql</application></link></title>
<title><link linkend="app-psql"><application>psql</application></link></title>

<itemizedlist>

<listitem>
<para>
Add support for quoting/escaping the values of <application>psql</application>
<link linkend="APP-PSQL-variables">variables</link> as SQL strings or
<link linkend="app-psql-variables">variables</link> as SQL strings or
identifiers (Pavel Stehule, Robert Haas)
</para>

Expand Down Expand Up @@ -2421,7 +2421,7 @@ if TG_OP = 'INSERT' and NEW.col1 = ... then
<listitem>
<para>
Fix <command>psql --file -</command> to properly honor <link
linkend="R1-APP-PSQL-3"><option>--single-transaction</option></link>
linkend="r1-app-psql-3"><option>--single-transaction</option></link>
(Bruce Momjian)
</para>
</listitem>
Expand Down Expand Up @@ -2480,7 +2480,7 @@ if TG_OP = 'INSERT' and NEW.col1 = ... then

<sect5>
<title><application>psql</application> <link
linkend="APP-PSQL-meta-commands"><command>\d</command></link>
linkend="app-psql-meta-commands"><command>\d</command></link>
Commands</title>

<itemizedlist>
Expand Down Expand Up @@ -2525,7 +2525,7 @@ if TG_OP = 'INSERT' and NEW.col1 = ... then
</sect4>

<sect4>
<title><link linkend="APP-PGDUMP"><application>pg_dump</application></link></title>
<title><link linkend="app-pgdump"><application>pg_dump</application></link></title>

<itemizedlist>

Expand Down Expand Up @@ -3432,7 +3432,7 @@ if TG_OP = 'INSERT' and NEW.col1 = ... then
<listitem>
<para>
Add <link
linkend="CONTRIB-DBLINK-GET-NOTIFY"><function>dblink_get_notify()</function></link>
linkend="contrib-dblink-get-notify"><function>dblink_get_notify()</function></link>
to <filename>contrib/dblink</filename> (Marcus Kempe)
</para>

Expand All @@ -3449,7 +3449,7 @@ if TG_OP = 'INSERT' and NEW.col1 = ... then

<para>
This affects <link
linkend="CONTRIB-DBLINK-BUILD-SQL-INSERT"><function>dblink_build_sql_insert()</function></link>
linkend="contrib-dblink-build-sql-insert"><function>dblink_build_sql_insert()</function></link>
and related functions. These functions now number columns according
to logical not physical column numbers.
</para>
Expand Down

0 comments on commit ddb6fa8

Please sign in to comment.