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
4f821124
Commit
4f821124
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Fix bit-rot in ipc_test.c; it didn't include some stuff that pg_shmem.c
now depends on.
parent
12179c99
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/port/ipc_test.c
+13
-1
13 additions, 1 deletion
src/backend/port/ipc_test.c
with
13 additions
and
1 deletion
src/backend/port/ipc_test.c
+
13
−
1
View file @
4f821124
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/port/ipc_test.c,v 1.1
6
200
4/12/31
2
2
:0
0:29 pgsq
l Exp $
* $PostgreSQL: pgsql/src/backend/port/ipc_test.c,v 1.1
7
200
5/02/05
2
0
:0
7:16 tg
l Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -51,6 +51,8 @@ bool IsUnderPostmaster = false;
...
@@ -51,6 +51,8 @@ bool IsUnderPostmaster = false;
int
MaxBackends
=
32
;
int
MaxBackends
=
32
;
int
NBuffers
=
64
;
int
NBuffers
=
64
;
char
*
DataDir
=
"."
;
#ifndef assert_enabled
#ifndef assert_enabled
bool
assert_enabled
=
true
;
bool
assert_enabled
=
true
;
#endif
#endif
...
@@ -129,6 +131,11 @@ ExceptionalCondition(char *conditionName,
...
@@ -129,6 +131,11 @@ ExceptionalCondition(char *conditionName,
}
}
int
errcode_for_file_access
(
void
)
{
return
0
;
}
bool
bool
errstart
(
int
elevel
,
const
char
*
filename
,
int
lineno
,
errstart
(
int
elevel
,
const
char
*
filename
,
int
lineno
,
...
@@ -143,6 +150,11 @@ errfinish(int dummy,...)
...
@@ -143,6 +150,11 @@ errfinish(int dummy,...)
proc_exit
(
1
);
proc_exit
(
1
);
}
}
void
elog_start
(
const
char
*
filename
,
int
lineno
,
const
char
*
funcname
)
{
}
void
void
elog_finish
(
int
elevel
,
const
char
*
fmt
,...)
elog_finish
(
int
elevel
,
const
char
*
fmt
,...)
{
{
...
...
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