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
ca1d4eb7
Commit
ca1d4eb7
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Remove forced CHECKPOINT in regression tests --- redundant now that
CREATE DATABASE does one internally.
parent
fbcbc5d0
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/test/regress/pg_regress.sh
+1
-5
1 addition, 5 deletions
src/test/regress/pg_regress.sh
with
1 addition
and
5 deletions
src/test/regress/pg_regress.sh
+
1
−
5
View file @
ca1d4eb7
#! /bin/sh
#! /bin/sh
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.5
7
2005/06/2
1 04:02:34
tgl Exp $
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.5
8
2005/06/2
5 23:04:06
tgl Exp $
me
=
`
basename
$0
`
me
=
`
basename
$0
`
:
${
TMPDIR
=/tmp
}
:
${
TMPDIR
=/tmp
}
...
@@ -535,9 +535,6 @@ fi
...
@@ -535,9 +535,6 @@ fi
# Create the regression database
# Create the regression database
# We use template0 so that any installation-local cruft in template1
# We use template0 so that any installation-local cruft in template1
# will not mess up the tests.
# will not mess up the tests.
# Note: the reason for checkpointing just after creating the new DB is so
# that if we get a backend core dump during the tests, WAL replay won't
# remove the core file.
# ----------
# ----------
message
"creating database
\"
$dbname
\"
"
message
"creating database
\"
$dbname
\"
"
...
@@ -548,7 +545,6 @@ if [ $? -ne 0 ]; then
...
@@ -548,7 +545,6 @@ if [ $? -ne 0 ]; then
fi
fi
"
$bindir
/psql"
-q
-X
$psql_options
-c
"
\
"
$bindir
/psql"
-q
-X
$psql_options
-c
"
\
checkpoint;
alter database
\"
$dbname
\"
set lc_messages to 'C';
alter database
\"
$dbname
\"
set lc_messages to 'C';
alter database
\"
$dbname
\"
set lc_monetary to 'C';
alter database
\"
$dbname
\"
set lc_monetary to 'C';
alter database
\"
$dbname
\"
set lc_numeric to 'C';
alter database
\"
$dbname
\"
set lc_numeric to 'C';
...
...
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