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
868d7081
Commit
868d7081
authored
Sep 05, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add // comments.
parent
b45311e0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
33 deletions
+36
-33
src/backend/parser/scan.l
src/backend/parser/scan.l
+3
-1
src/backend/utils/sort/psort.c
src/backend/utils/sort/psort.c
+11
-11
src/bin/psql/psql.c
src/bin/psql/psql.c
+3
-2
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-connect.c
+13
-13
src/interfaces/libpq/fe-exec.c
src/interfaces/libpq/fe-exec.c
+6
-6
No files found.
src/backend/parser/scan.l
View file @
868d7081
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.1
6 1997/09/02 02:32:35 thomas
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.1
7 1997/09/05 00:09:20 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -120,6 +120,7 @@ real -?{digit}+\.{digit}+([Ee][-+]?{digit}+)?
param \${integer}
comment "--".*\n
comment2 "//".*\n
space [ \t\n\f]
other .
...
...
@@ -131,6 +132,7 @@ other .
}
{comment} { /* ignore */ }
{comment2} { /* ignore */ }
{xcline} { /* ignore */ }
...
...
src/backend/utils/sort/psort.c
View file @
868d7081
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.1
7 1997/08/19 21:36:06
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.1
8 1997/09/05 00:09:23
momjian Exp $
*
* NOTES
* Sorts the first relation into the second relation.
...
...
@@ -90,21 +90,21 @@ static long shortzero = 0; /* used to delimit runs */
*
* LeftistContextData treeContext;
*
* static int TapeRange;
// number of tapes - 1 (T) //
* static int Level;
// (l) //
* static int TotalDummy;
// summation of tp_dummy //
* static int TapeRange;
number of tapes - 1 (T)
* static int Level;
(l)
* static int TotalDummy;
summation of tp_dummy
* static struct tape *Tape;
*
* static int BytesRead;
// to keep track of # of IO //
* static int BytesRead;
to keep track of # of IO
* static int BytesWritten;
*
* struct leftist *Tuples;
// current tuples in memory //
* struct leftist *Tuples;
current tuples in memory
*
* FILE *psort_grab_file;
//
this holds tuples grabbed
* from merged sort runs
//
* long psort_current;
// current file position //
* long psort_saved;
//
file position saved for
* mark and restore
//
* FILE *psort_grab_file; this holds tuples grabbed
* from merged sort runs
* long psort_current;
current file position
* long psort_saved; file position saved for
* mark and restore
*/
/*
...
...
src/bin/psql/psql.c
View file @
868d7081
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.
89 1997/09/01 06:09:53 thomas
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.
90 1997/09/05 00:09:30 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1605,7 +1605,8 @@ MainLoop(PsqlSettings * settings, FILE * source)
continue
;
/* single-line comment? truncate line */
}
else
if
(
line
[
i
]
==
'-'
&&
line
[
i
+
1
]
==
'-'
)
{
}
else
if
((
line
[
i
]
==
'-'
&&
line
[
i
+
1
]
==
'-'
)
||
(
line
[
i
]
==
'/'
&&
line
[
i
+
1
]
==
'/'
))
{
/* print comment at top of query */
if
(
settings
->
singleStep
)
fprintf
(
stdout
,
"%s
\n
"
,
line
+
i
);
...
...
src/interfaces/libpq/fe-connect.c
View file @
868d7081
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.3
7 1997/06/06 01:42:02 scrappy
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.3
8 1997/09/05 00:09:43 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -423,14 +423,14 @@ connectDB(PGconn *conn)
int
portno
;
/*
//
//
Initialize the startup packet.
//
//
This data structure is used for the seq-packet protocol. It
//
describes the frontend-backend connection.
//
//
*/
*
*
Initialize the startup packet.
*
*
This data structure is used for the seq-packet protocol. It
*
describes the frontend-backend connection.
*
*
*/
strncpy
(
startup
.
user
,
conn
->
pguser
,
sizeof
(
startup
.
user
));
strncpy
(
startup
.
database
,
conn
->
dbName
,
sizeof
(
startup
.
database
));
strncpy
(
startup
.
tty
,
conn
->
pgtty
,
sizeof
(
startup
.
tty
));
...
...
@@ -442,10 +442,10 @@ connectDB(PGconn *conn)
startup
.
execFile
[
0
]
=
'\0'
;
/* not used */
/*
//
//
Open a connection to postmaster/backend.
//
*/
*
*
Open a connection to postmaster/backend.
*
*/
port
=
(
Port
*
)
malloc
(
sizeof
(
Port
));
memset
((
char
*
)
port
,
0
,
sizeof
(
Port
));
...
...
src/interfaces/libpq/fe-exec.c
View file @
868d7081
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.3
4 1997/08/27 09:05:23 vadim
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.3
5 1997/09/05 00:09:47 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -436,11 +436,11 @@ process_response_from_backend(FILE *pfin, FILE *pfout, FILE *pfdebug,
done
=
true
;
}
else
{
/*
//
since backend may produce more than one result for some
//
commands need to poll until clear
//
send an empty query down, and keep reading out of the pipe
//
until an 'I' is received.
*/
*
since backend may produce more than one result for some
*
commands need to poll until clear
*
send an empty query down, and keep reading out of the pipe
*
until an 'I' is received.
*/
pqPuts
(
"Q "
,
pfout
,
pfdebug
);
/* send an empty query */
/*
* Increment a flag and process messages in the usual way because
...
...
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