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
e8a45156
Commit
e8a45156
authored
Dec 23, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alter_table test sometimes failed in parallel mode, because of transient
table name conflict against rangefuncs test.
parent
baee5f75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/test/regress/expected/alter_table.out
src/test/regress/expected/alter_table.out
+2
-2
src/test/regress/sql/alter_table.sql
src/test/regress/sql/alter_table.sql
+1
-1
No files found.
src/test/regress/expected/alter_table.out
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);
...
...
src/test/regress/sql/alter_table.sql
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
);
...
...
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