aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2005-12-08 20:45:26 +0000
committerPeter Eisentraut <peter_e@gmx.net>2005-12-08 20:45:26 +0000
commitbd760bf800ad7ebb97ccb7f3e372c854a18ecfe9 (patch)
tree1f7d5b2b20cc0a070737ca990b8d7d9eb83bdf80
parent929f8522877ecef596a7720261d9503dcfae8ef4 (diff)
downloadpostgresql-bd760bf800ad7ebb97ccb7f3e372c854a18ecfe9.tar.gz
postgresql-bd760bf800ad7ebb97ccb7f3e372c854a18ecfe9.zip
Documentation fix: s/event_object_name/event_object_table/g
-rw-r--r--doc/src/sgml/information_schema.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml
index c4d0d54caff..761a7e899b6 100644
--- a/doc/src/sgml/information_schema.sgml
+++ b/doc/src/sgml/information_schema.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.20.4.1 2005/08/27 14:13:31 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.20.4.2 2005/12/08 20:45:26 petere Exp $ -->
<chapter id="information-schema">
<title>The Information Schema</title>
@@ -3822,7 +3822,7 @@ ORDER BY c.ordinal_position;
</row>
<row>
- <entry><literal>event_object_name</literal></entry>
+ <entry><literal>event_object_table</literal></entry>
<entry><type>sql_identifier</type></entry>
<entry>Name of the table that the trigger is defined on</entry>
</row>
@@ -3901,7 +3901,7 @@ ORDER BY c.ordinal_position;
event. As a consequence of these two issues, the primary key of
the view <literal>triggers</literal> is really
<literal>(trigger_catalog, trigger_schema, trigger_name,
- event_object_name, event_manipulation)</literal> instead of
+ event_object_table, event_manipulation)</literal> instead of
<literal>(trigger_catalog, trigger_schema, trigger_name)</literal>,
which is what the SQL standard specifies. Nonetheless, if you
define your triggers in a manner that conforms with the SQL