Rename test to have "Test" suffix

This commit is contained in:
Sandro Santilli
2014-06-04 10:41:34 +02:00
parent 651bb8cdb7
commit e993f83b8d
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
create table pub(a int);
create table prv(a int);
GRANT SELECT ON TABLE pub TO public;
REVOKE SELECT ON TABLE prv FROM public;
SELECT CDB_UserTables() ORDER BY 1;
SELECT 'all',CDB_UserTables('all') ORDER BY 2;
SELECT 'public',CDB_UserTables('public') ORDER BY 2;
SELECT 'private',CDB_UserTables('private') ORDER BY 2;
SELECT '--unsupported--',CDB_UserTables('--unsupported--') ORDER BY 2;
drop table pub;
drop table prv;