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
e8a45156
Commit
e8a45156
authored
21 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
alter_table test sometimes failed in parallel mode, because of transient
table name conflict against rangefuncs test.
parent
baee5f75
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/test/regress/expected/alter_table.out
+2
-2
2 additions, 2 deletions
src/test/regress/expected/alter_table.out
src/test/regress/sql/alter_table.sql
+1
-1
1 addition, 1 deletion
src/test/regress/sql/alter_table.sql
with
3 additions
and
3 deletions
src/test/regress/expected/alter_table.out
+
2
−
2
View file @
e8a45156
...
...
@@ -737,8 +737,8 @@ drop table def_test;
alter table pg_class drop column relname;
ERROR: permission denied: "pg_class" is a system catalog
-- try altering non-existent table, should fail
alter table
foo
drop column bar;
ERROR: relation "
foo
" does not exist
alter table
nosuchtable
drop column bar;
ERROR: relation "
nosuchtable
" does not exist
-- test dropping columns
create table atacc1 (a int4 not null, b int4, c int4 not null, d int4);
insert into atacc1 values (1, 2, 3, 4);
...
...
This diff is collapsed.
Click to expand it.
src/test/regress/sql/alter_table.sql
+
1
−
1
View file @
e8a45156
...
...
@@ -580,7 +580,7 @@ drop table def_test;
alter
table
pg_class
drop
column
relname
;
-- try altering non-existent table, should fail
alter
table
foo
drop
column
bar
;
alter
table
nosuchtable
drop
column
bar
;
-- test dropping columns
create
table
atacc1
(
a
int4
not
null
,
b
int4
,
c
int4
not
null
,
d
int4
);
...
...
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