1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Alter test results to comply with new ALTER TABLE behaviour.

This commit is contained in:
Simon Riggs
2011-07-04 11:09:51 +01:00
parent 2c3d9db56d
commit f563afd433
2 changed files with 35 additions and 39 deletions

View File

@ -1221,7 +1221,6 @@ group by c.relname;
create table alterlock (f1 int primary key, f2 text);
-- share update exclusive
begin; alter table alterlock alter column f2 set statistics 150;
select * from my_locks order by 1;
rollback;
@ -1258,7 +1257,6 @@ begin; alter table alterlock alter column f2 set storage extended;
select * from my_locks order by 1;
rollback;
-- share row exclusive
begin; alter table alterlock alter column f2 set default 'x';
select * from my_locks order by 1;
rollback;