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
bbd5c217
Commit
bbd5c217
authored
Dec 23, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make no-tty not use quiet in psql, fix group by copy failure, fix ccsym to delete tmp files.
parent
6b2e7e12
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
7 deletions
+26
-7
src/backend/nodes/copyfuncs.c
src/backend/nodes/copyfuncs.c
+19
-1
src/bin/psql/psql.c
src/bin/psql/psql.c
+6
-6
src/tools/ccsym
src/tools/ccsym
+1
-0
No files found.
src/backend/nodes/copyfuncs.c
View file @
bbd5c217
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.2
3 1997/12/23 19:53:30 thomas
Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.2
4 1997/12/23 21:38:25 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -509,6 +509,21 @@ _copyAgg(Agg *from)
return
newnode
;
}
/* ---------------
* _copyGroupClause
* --------------
*/
static
GroupClause
*
_copyGroupClause
(
GroupClause
*
from
)
{
GroupClause
*
newnode
=
makeNode
(
GroupClause
);
newnode
->
grpOpoid
=
from
->
grpOpoid
;
newnode
->
entry
=
copyObject
(
from
->
entry
);
return
newnode
;
}
/* ----------------
* _copyUnique
...
...
@@ -1665,6 +1680,9 @@ copyObject(void *from)
case
T_Agg
:
retval
=
_copyAgg
(
from
);
break
;
case
T_GroupClause
:
retval
=
_copyGroupClause
(
from
);
break
;
case
T_Unique
:
retval
=
_copyUnique
(
from
);
break
;
...
...
src/bin/psql/psql.c
View file @
bbd5c217
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.12
1 1997/12/22 20:03:53
momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.12
2 1997/12/23 21:38:40
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -110,7 +110,7 @@ struct winsize
/* declarations for functions in this file */
static
void
usage
(
char
*
progname
);
static
void
slashUsage
();
static
void
handleCopyOut
(
PGresult
*
res
,
bool
quiet
,
FILE
*
copystream
);
static
void
handleCopyOut
(
PGresult
*
res
,
FILE
*
copystream
);
static
void
handleCopyIn
(
PGresult
*
res
,
const
bool
mustprompt
,
FILE
*
copystream
);
...
...
@@ -994,13 +994,13 @@ SendQuery(bool *success_p, PsqlSettings *pset, const char *query,
case
PGRES_COPY_OUT
:
*
success_p
=
true
;
if
(
copy_out
)
handleCopyOut
(
results
,
pset
->
quiet
,
copystream
);
handleCopyOut
(
results
,
copystream
);
else
{
if
(
!
pset
->
quiet
)
printf
(
"Copy command returns...
\n
"
);
handleCopyOut
(
results
,
pset
->
quiet
,
stdout
);
handleCopyOut
(
results
,
stdout
);
}
break
;
case
PGRES_COPY_IN
:
...
...
@@ -1008,7 +1008,7 @@ SendQuery(bool *success_p, PsqlSettings *pset, const char *query,
if
(
copy_in
)
handleCopyIn
(
results
,
false
,
copystream
);
else
handleCopyIn
(
results
,
!
pset
->
quiet
,
stdin
);
handleCopyIn
(
results
,
!
pset
->
quiet
&&
!
pset
->
notty
,
stdin
);
break
;
case
PGRES_NONFATAL_ERROR
:
case
PGRES_FATAL_ERROR
:
...
...
@@ -2548,7 +2548,7 @@ main(int argc, char **argv)
#define COPYBUFSIZ 8192
static
void
handleCopyOut
(
PGresult
*
res
,
bool
quiet
,
FILE
*
copystream
)
handleCopyOut
(
PGresult
*
res
,
FILE
*
copystream
)
{
bool
copydone
;
char
copybuf
[
COPYBUFSIZ
];
...
...
src/tools/ccsym
View file @
bbd5c217
#!/bin/sh
trap
"/bin/rm -f /tmp/
$$
.*"
0 1 2 3 15
cd
/tmp
/bin/cat
>
$$
.c
<<
EOF
extern int foo;
EOF
...
...
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