File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.199 2003/08/10 01:20:34 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.200 2003/08/17 22:19:10 tgl Exp $
3
3
-->
4
4
5
5
<Chapter Id="runtime">
@@ -2396,6 +2396,14 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
2396
2396
<indexterm><primary>missing from</></>
2397
2397
<listitem>
2398
2398
<para>
2399
+ When <literal>true</>, tables that are referenced by a query will be
2400
+ automatically added to the <literal>FROM</> clause if not already
2401
+ present. The default is <literal>true</> for compatibility with
2402
+ previous releases of <productname>PostgreSQL</>. However, this
2403
+ behavior is not SQL-standard, and many people dislike it because it
2404
+ can mask mistakes. Set to <literal>false</> for the SQL-standard
2405
+ behavior of rejecting references to tables that are not listed in
2406
+ <literal>FROM</>.
2399
2407
</para>
2400
2408
</listitem>
2401
2409
</varlistentry>
Original file line number Diff line number Diff line change 10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.149 2003/08/11 23:04:49 tgl Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.150 2003/08/17 22:19:15 tgl Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -818,7 +818,7 @@ static struct config_bool ConfigureNamesBool[] =
818
818
},
819
819
{
820
820
{"add_missing_from" , PGC_USERSET , COMPAT_OPTIONS_PREVIOUS ,
821
- gettext_noop ("Add missing table references to from clauses" ),
821
+ gettext_noop ("Add missing table references to FROM clauses" ),
822
822
NULL
823
823
},
824
824
& add_missing_from ,
You can’t perform that action at this time.
0 commit comments