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
63a85082
Commit
63a85082
authored
Sep 28, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reverse out last scan.l patch for minus handling.\
parent
bc0595f2
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
doc/src/sgml/ref/pg_upgrade.sgml
doc/src/sgml/ref/pg_upgrade.sgml
+3
-3
src/backend/parser/parse_func.c
src/backend/parser/parse_func.c
+3
-3
src/backend/parser/parse_relation.c
src/backend/parser/parse_relation.c
+2
-2
src/backend/parser/scan.l
src/backend/parser/scan.l
+2
-2
src/tools/backend/flow.fig
src/tools/backend/flow.fig
+2
-2
src/tools/backend/flow.gif
src/tools/backend/flow.gif
+0
-0
src/tools/backend/flow.jpg
src/tools/backend/flow.jpg
+0
-0
src/tools/backend/index.html
src/tools/backend/index.html
+1
-1
No files found.
doc/src/sgml/ref/pg_upgrade.sgml
View file @
63a85082
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/pg_upgrade.sgml,v 1.
6 1999/07/31 22:05:48 tgl
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/pg_upgrade.sgml,v 1.
7 1999/09/28 03:41:35 momjian
Exp $
Postgres documentation
-->
...
...
@@ -40,7 +40,7 @@ pg_upgrade [ -f <replaceable class="parameter">filename</replaceable> ] <replace
is a utility for upgrading from a previous
PostgreSQL release without reloading all the data.
Not all <productname>Postgres</productname> release transitions can be
handled this way
; c
heck the release notes for details on your installation.
handled this way
. C
heck the release notes for details on your installation.
</para>
<procedure>
...
...
@@ -55,7 +55,7 @@ pg_upgrade [ -f <replaceable class="parameter">filename</replaceable> ] <replace
<step performance="required">
<para>
Do
Then do:
<programlisting>
% pg_dumpall -s >db.out
</programlisting>
...
...
src/backend/parser/parse_func.c
View file @
63a85082
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.5
6 1999/09/27 17:46:14
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.5
7 1999/09/28 03:41:36
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -275,7 +275,7 @@ ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
if
(
rte
==
NULL
)
{
rte
=
addRangeTableEntry
(
pstate
,
refname
,
refname
,
FALSE
,
FALSE
);
elog
(
NOTICE
,
"A
uto-creating query reference to
table %s"
,
refname
);
elog
(
NOTICE
,
"A
dding missing FROM-clause entry for
table %s"
,
refname
);
}
relname
=
rte
->
relname
;
...
...
@@ -434,7 +434,7 @@ ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
if
(
rte
==
NULL
)
{
rte
=
addRangeTableEntry
(
pstate
,
refname
,
refname
,
FALSE
,
FALSE
);
elog
(
NOTICE
,
"A
uto-creating query reference to
table %s"
,
refname
);
elog
(
NOTICE
,
"A
dding missing FROM-clause entry for
table %s"
,
refname
);
}
relname
=
rte
->
relname
;
...
...
src/backend/parser/parse_relation.c
View file @
63a85082
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_relation.c,v 1.2
8 1999/09/27 17:46:14
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_relation.c,v 1.2
9 1999/09/28 03:41:36
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -241,7 +241,7 @@ expandAll(ParseState *pstate, char *relname, char *refname, int *this_resno)
if
(
rte
==
NULL
)
{
rte
=
addRangeTableEntry
(
pstate
,
relname
,
refname
,
FALSE
,
FALSE
);
elog
(
NOTICE
,
"A
uto-creating query reference to
table %s"
,
refname
);
elog
(
NOTICE
,
"A
dding missing FROM-clause entry for
table %s"
,
refname
);
}
rel
=
heap_open
(
rte
->
relid
,
AccessShareLock
);
...
...
src/backend/parser/scan.l
View file @
63a85082
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.5
6 1999/09/27 21:02:54
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.5
7 1999/09/28 03:41:36
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -151,7 +151,7 @@ typecast "::"
self [,()\[\].;$\:\+\-\*\/\%\^\<\>\=\|]
op_and_self [\~\!\@\#\^\&\|\`\?\$\:\+\-\*\/\%\<\>\=]
operator
{op_and_self}|({op_and_self}+[\~\!\@\#\^\&\|\`\?\$\:\+\*\/\%\<\>\=])
operator
{op_and_self}+
/* we do not allow unary minus in numbers.
* instead we pass it verbatim to parser. there it gets
...
...
src/tools/backend/flow.fig
View file @
63a85082
#FIG 3.2
Landscape
Portrait
Center
Inches
Letter
100.0
0
88.9
0
Single
-2
1200 2
...
...
src/tools/backend/flow.gif
0 → 100644
View file @
63a85082
28.7 KB
src/tools/backend/flow.jpg
deleted
100644 → 0
View file @
bc0595f2
61.4 KB
src/tools/backend/index.html
View file @
63a85082
...
...
@@ -13,7 +13,7 @@ by Bruce Momjian
<CENTER>
<BR>
<BR>
<IMG
src=
"flow.
jpg
"
usemap=
"#flowmap"
alt=
"flowchart"
border=
0
>
<IMG
src=
"flow.
gif
"
usemap=
"#flowmap"
alt=
"flowchart"
border=
0
>
</CENTER>
<MAP
name=
"flowmap"
>
<AREA
COORDS=
"70,0,230,40"
HREF=
"backend_dirs.html#main"
>
...
...
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