Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
c3673c03
Commit
c3673c03
authored
29 years ago
by
Marc G. Fournier
Browse files
Options
Downloads
Patches
Plain Diff
More run-time checking errors:
-Kurt
parent
60b1123f
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/tcop/postgres.c
+4
-4
4 additions, 4 deletions
src/backend/tcop/postgres.c
src/backend/tcop/tcopprot.h
+3
-3
3 additions, 3 deletions
src/backend/tcop/tcopprot.h
with
7 additions
and
7 deletions
src/backend/tcop/postgres.c
+
4
−
4
View file @
c3673c03
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.
5
1996/08/
06 16:43
:4
1
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.
6
1996/08/
19 13:37
:4
9
scrappy Exp $
*
*
* NOTES
* NOTES
* this is the "main" module of the postgres backend and
* this is the "main" module of the postgres backend and
...
@@ -560,14 +560,14 @@ pg_plan(char *query_string, /* string to execute */
...
@@ -560,14 +560,14 @@ pg_plan(char *query_string, /* string to execute */
*/
*/
void
void
pg_eval
(
char
*
query_string
,
char
*
argv
[]
,
Oid
*
typev
,
int
nargs
)
pg_eval
(
char
*
query_string
,
char
*
*
argv
,
Oid
*
typev
,
int
nargs
)
{
{
pg_eval_dest
(
query_string
,
argv
,
typev
,
nargs
,
whereToSendOutput
);
pg_eval_dest
(
query_string
,
argv
,
typev
,
nargs
,
whereToSendOutput
);
}
}
void
void
pg_eval_dest
(
char
*
query_string
,
/* string to execute */
pg_eval_dest
(
char
*
query_string
,
/* string to execute */
char
*
argv
[]
,
/* arguments */
char
*
*
argv
,
/* arguments */
Oid
*
typev
,
/* argument types */
Oid
*
typev
,
/* argument types */
int
nargs
,
/* number of arguments */
int
nargs
,
/* number of arguments */
CommandDest
dest
)
/* where results should go */
CommandDest
dest
)
/* where results should go */
...
@@ -1227,7 +1227,7 @@ PostgresMain(int argc, char *argv[])
...
@@ -1227,7 +1227,7 @@ PostgresMain(int argc, char *argv[])
*/
*/
if
(
IsUnderPostmaster
==
false
)
{
if
(
IsUnderPostmaster
==
false
)
{
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"$Revision: 1.
5
$ $Date: 1996/08/
06 16:43
:4
1
$"
);
puts
(
"$Revision: 1.
6
$ $Date: 1996/08/
19 13:37
:4
9
$"
);
}
}
/* ----------------
/* ----------------
...
...
This diff is collapsed.
Click to expand it.
src/backend/tcop/tcopprot.h
+
3
−
3
View file @
c3673c03
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: tcopprot.h,v 1.
1.1.1
1996/0
7/09 06:22:0
0 scrappy Exp $
* $Id: tcopprot.h,v 1.
2
1996/0
8/19 13:37:5
0 scrappy Exp $
*
*
* OLD COMMENTS
* OLD COMMENTS
* This file was created so that other c files could get the two
* This file was created so that other c files could get the two
...
@@ -25,8 +25,8 @@
...
@@ -25,8 +25,8 @@
#ifndef BOOTSTRAP_INCLUDE
#ifndef BOOTSTRAP_INCLUDE
extern
List
*
pg_plan
(
char
*
query_string
,
Oid
*
typev
,
int
nargs
,
extern
List
*
pg_plan
(
char
*
query_string
,
Oid
*
typev
,
int
nargs
,
QueryTreeList
**
queryListP
,
CommandDest
dest
);
QueryTreeList
**
queryListP
,
CommandDest
dest
);
extern
void
pg_eval
(
char
*
query_string
,
char
*
argv
[]
,
Oid
*
typev
,
int
nargs
);
extern
void
pg_eval
(
char
*
query_string
,
char
*
*
argv
,
Oid
*
typev
,
int
nargs
);
extern
void
pg_eval_dest
(
char
*
query_string
,
char
*
argv
[]
,
Oid
*
typev
,
extern
void
pg_eval_dest
(
char
*
query_string
,
char
*
*
argv
,
Oid
*
typev
,
int
nargs
,
CommandDest
dest
);
int
nargs
,
CommandDest
dest
);
#endif
/* BOOTSTRAP_HEADER */
#endif
/* BOOTSTRAP_HEADER */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment