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
deab9274
Commit
deab9274
authored
Dec 28, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add mention of Christof Petig for ecpg items.
parent
dbaddcfd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
+9
-7
HISTORY
HISTORY
+2
-2
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+3
-3
src/bin/psql/mainloop.c
src/bin/psql/mainloop.c
+4
-2
No files found.
HISTORY
View file @
deab9274
...
...
@@ -368,8 +368,8 @@ Changes
ECPG
EXECUTE ... INTO implemented
Multiple row descriptor support (e.g. CARDINALITY)
EXECUTE ... INTO implemented
(Christof Petig)
Multiple row descriptor support (e.g. CARDINALITY)
(Christof Petig)
Fix for GRANT parameters (Lee Kindness)
Fix INITIALLY DEFERRED bug
Various bug fixes (Michael, Christof Petig)
...
...
doc/src/sgml/release.sgml
View file @
deab9274
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.10
8 2001/12/27 21:10:15 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.10
9 2001/12/28 05:00:32 momjian
Exp $
-->
<appendix id="release">
...
...
@@ -482,8 +482,8 @@ Add more compatibility functions to odbc.sql (Peter E)
<sect3>
<title>ECPG</title>
<literallayout>
EXECUTE ... INTO implemented
Multiple row descriptor support (e.g. CARDINALITY)
EXECUTE ... INTO implemented
(Christof Petig)
Multiple row descriptor support (e.g. CARDINALITY)
(Christof Petig)
Fix for GRANT parameters (Lee Kindness)
Fix INITIALLY DEFERRED bug
Various bug fixes (Michael, Christof Petig)
...
...
src/bin/psql/mainloop.c
View file @
deab9274
...
...
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/mainloop.c,v 1.4
3 2001/11/05 17:46:31
momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/mainloop.c,v 1.4
4 2001/12/28 05:00:32
momjian Exp $
*/
#include "postgres_fe.h"
#include "mainloop.h"
...
...
@@ -447,7 +447,6 @@ MainLoop(FILE *source)
{
const
char
*
end_of_cmd
=
NULL
;
paren_level
=
0
;
line
[
i
-
prevlen
]
=
'\0'
;
/* overwrites backslash */
/* is there anything else on the line for the command? */
...
...
@@ -470,6 +469,9 @@ MainLoop(FILE *source)
success
=
slashCmdStatus
!=
CMD_ERROR
;
if
(
query_buf
->
len
==
0
)
paren_level
=
0
;
if
((
slashCmdStatus
==
CMD_SEND
||
slashCmdStatus
==
CMD_NEWEDIT
)
&&
query_buf
->
len
==
0
)
{
...
...
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