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
c7718381
Commit
c7718381
authored
Aug 17, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Somebody forgot to include any actual documentation for ADD_MISSING_FROM.
parent
42159479
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+9
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
No files found.
doc/src/sgml/runtime.sgml
View file @
c7718381
<!--
$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">
...
...
@@ -2396,6 +2396,14 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
<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>
...
...
src/backend/utils/misc/guc.c
View file @
c7718381
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.1
49 2003/08/11 23:04:49
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.1
50 2003/08/17 22:19:15
tgl Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -818,7 +818,7 @@ static struct config_bool ConfigureNamesBool[] =
},
{
{
"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
,
...
...
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