<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.199 2003/08/10 01:20:34 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.200 2003/08/17 22:19:10 tgl Exp $
-->
<Chapter Id="runtime">
<indexterm><primary>missing from</></>
<listitem>
<para>
+ When <literal>true</>, tables that are referenced by a query will be
+ automatically added to the <literal>FROM</> clause if not already
+ present. The default is <literal>true</> for compatibility with
+ previous releases of <productname>PostgreSQL</>. However, this
+ behavior is not SQL-standard, and many people dislike it because it
+ can mask mistakes. Set to <literal>false</> for the SQL-standard
+ behavior of rejecting references to tables that are not listed in
+ <literal>FROM</>.
</para>
</listitem>
</varlistentry>
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.149 2003/08/11 23:04:49 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.150 2003/08/17 22:19:15 tgl Exp $
*
*--------------------------------------------------------------------
*/
},
{
{"add_missing_from", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
- gettext_noop("Add missing table references to from clauses"),
+ gettext_noop("Add missing table references to FROM clauses"),
NULL
},
&add_missing_from,