mirror of
https://github.com/postgres/postgres.git
synced 2025-05-23 00:02:38 -04:00
Revert "Hopefully-portable regression tests for CREATE/ALTER/DROP COLLATION."
This reverts commit 263645305b8f14a3821e04dffa96fa7c1bc2ae86. The buildfarm is sad.
This commit is contained in:
parent
263645305b
commit
f33c53ec5b
@ -626,51 +626,6 @@ SELECT collation for ((SELECT b FROM collate_test1 LIMIT 1));
|
|||||||
"C"
|
"C"
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
-- CREATE COLLATE tests
|
|
||||||
CREATE COLLATION collate_coll2 FROM "C";
|
|
||||||
-- Ensure non-OWNER ROLEs are not able to ALTER/DROP COLLATION
|
|
||||||
CREATE ROLE regress_rol_col1;
|
|
||||||
GRANT USAGE ON SCHEMA collate_tests TO regress_rol_col1;
|
|
||||||
SET ROLE regress_rol_col1;
|
|
||||||
DROP COLLATION IF EXISTS collate_tests.collate_coll2;
|
|
||||||
ERROR: must be owner of collation collate_tests.collate_coll2
|
|
||||||
RESET ROLE;
|
|
||||||
-- Ensure ALTER COLLATION SET SCHEMA works as expected
|
|
||||||
CREATE SCHEMA collate_tests2;
|
|
||||||
ALTER COLLATION collate_coll2 SET SCHEMA collate_tests2;
|
|
||||||
DROP COLLATION collate_tests2.collate_coll2;
|
|
||||||
DROP SCHEMA collate_tests2;
|
|
||||||
-- Should work. Classic cases of CREATE/ALTER COLLATION
|
|
||||||
CREATE COLLATION collate_coll3 (LOCALE = 'C');
|
|
||||||
ALTER COLLATION collate_coll3 OWNER TO regress_rol_col1;
|
|
||||||
ALTER COLLATION collate_coll3 RENAME TO collate_coll33;
|
|
||||||
DROP COLLATION collate_coll33;
|
|
||||||
-- Should fail. Give redundant options
|
|
||||||
CREATE COLLATION collate_coll3a (LOCALE = 'C', LC_COLLATE = 'C', LC_CTYPE= 'C');
|
|
||||||
ERROR: conflicting or redundant options
|
|
||||||
-- Should fail. LC_COLLATE must be specified
|
|
||||||
CREATE COLLATION collate_coll5 (LC_CTYPE= 'C');
|
|
||||||
ERROR: parameter "lc_collate" must be specified
|
|
||||||
-- Should fail. Give value options without value
|
|
||||||
CREATE COLLATION collate_coll4a (LC_COLLATE = '');
|
|
||||||
ERROR: parameter "lc_ctype" must be specified
|
|
||||||
CREATE COLLATION collate_coll5a (LC_CTYPE= '');
|
|
||||||
ERROR: parameter "lc_collate" must be specified
|
|
||||||
-- Should fail. Give invalid option name
|
|
||||||
CREATE COLLATION collate_coll6 (ASDF = 'C');
|
|
||||||
ERROR: collation attribute "asdf" not recognized
|
|
||||||
-- Ensure ROLEs without USAGE access can't CREATE/ALTER COLLATION
|
|
||||||
CREATE SCHEMA collate_tests4;
|
|
||||||
CREATE COLLATION collate_tests4.collate_coll9 (LOCALE = 'C');
|
|
||||||
REVOKE USAGE ON SCHEMA collate_tests4 FROM regress_rol_col1;
|
|
||||||
SET ROLE regress_rol_col1;
|
|
||||||
ALTER COLLATION collate_tests4.collate_coll9 RENAME TO collate_coll9b;
|
|
||||||
ERROR: permission denied for schema collate_tests4
|
|
||||||
CREATE COLLATION collate_tests4.collate_coll10 (LOCALE = 'C');
|
|
||||||
ERROR: permission denied for schema collate_tests4
|
|
||||||
RESET ROLE;
|
|
||||||
DROP SCHEMA collate_tests4 CASCADE;
|
|
||||||
NOTICE: drop cascades to collation collate_coll9
|
|
||||||
--
|
--
|
||||||
-- Clean up. Many of these table names will be re-used if the user is
|
-- Clean up. Many of these table names will be re-used if the user is
|
||||||
-- trying to run any platform-specific collation tests later, so we
|
-- trying to run any platform-specific collation tests later, so we
|
||||||
@ -693,4 +648,3 @@ drop cascades to function dup(anyelement)
|
|||||||
drop cascades to table collate_test20
|
drop cascades to table collate_test20
|
||||||
drop cascades to table collate_test21
|
drop cascades to table collate_test21
|
||||||
drop cascades to table collate_test22
|
drop cascades to table collate_test22
|
||||||
DROP ROLE regress_rol_col1;
|
|
||||||
|
@ -231,50 +231,6 @@ SELECT collation for ('foo'::text);
|
|||||||
SELECT collation for ((SELECT a FROM collate_test1 LIMIT 1)); -- non-collatable type - error
|
SELECT collation for ((SELECT a FROM collate_test1 LIMIT 1)); -- non-collatable type - error
|
||||||
SELECT collation for ((SELECT b FROM collate_test1 LIMIT 1));
|
SELECT collation for ((SELECT b FROM collate_test1 LIMIT 1));
|
||||||
|
|
||||||
-- CREATE COLLATE tests
|
|
||||||
CREATE COLLATION collate_coll2 FROM "C";
|
|
||||||
|
|
||||||
-- Ensure non-OWNER ROLEs are not able to ALTER/DROP COLLATION
|
|
||||||
CREATE ROLE regress_rol_col1;
|
|
||||||
GRANT USAGE ON SCHEMA collate_tests TO regress_rol_col1;
|
|
||||||
SET ROLE regress_rol_col1;
|
|
||||||
DROP COLLATION IF EXISTS collate_tests.collate_coll2;
|
|
||||||
RESET ROLE;
|
|
||||||
|
|
||||||
-- Ensure ALTER COLLATION SET SCHEMA works as expected
|
|
||||||
CREATE SCHEMA collate_tests2;
|
|
||||||
ALTER COLLATION collate_coll2 SET SCHEMA collate_tests2;
|
|
||||||
DROP COLLATION collate_tests2.collate_coll2;
|
|
||||||
DROP SCHEMA collate_tests2;
|
|
||||||
|
|
||||||
-- Should work. Classic cases of CREATE/ALTER COLLATION
|
|
||||||
CREATE COLLATION collate_coll3 (LOCALE = 'C');
|
|
||||||
ALTER COLLATION collate_coll3 OWNER TO regress_rol_col1;
|
|
||||||
ALTER COLLATION collate_coll3 RENAME TO collate_coll33;
|
|
||||||
DROP COLLATION collate_coll33;
|
|
||||||
|
|
||||||
-- Should fail. Give redundant options
|
|
||||||
CREATE COLLATION collate_coll3a (LOCALE = 'C', LC_COLLATE = 'C', LC_CTYPE= 'C');
|
|
||||||
|
|
||||||
-- Should fail. LC_COLLATE must be specified
|
|
||||||
CREATE COLLATION collate_coll5 (LC_CTYPE= 'C');
|
|
||||||
|
|
||||||
-- Should fail. Give value options without value
|
|
||||||
CREATE COLLATION collate_coll4a (LC_COLLATE = '');
|
|
||||||
CREATE COLLATION collate_coll5a (LC_CTYPE= '');
|
|
||||||
|
|
||||||
-- Should fail. Give invalid option name
|
|
||||||
CREATE COLLATION collate_coll6 (ASDF = 'C');
|
|
||||||
|
|
||||||
-- Ensure ROLEs without USAGE access can't CREATE/ALTER COLLATION
|
|
||||||
CREATE SCHEMA collate_tests4;
|
|
||||||
CREATE COLLATION collate_tests4.collate_coll9 (LOCALE = 'C');
|
|
||||||
REVOKE USAGE ON SCHEMA collate_tests4 FROM regress_rol_col1;
|
|
||||||
SET ROLE regress_rol_col1;
|
|
||||||
ALTER COLLATION collate_tests4.collate_coll9 RENAME TO collate_coll9b;
|
|
||||||
CREATE COLLATION collate_tests4.collate_coll10 (LOCALE = 'C');
|
|
||||||
RESET ROLE;
|
|
||||||
DROP SCHEMA collate_tests4 CASCADE;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Clean up. Many of these table names will be re-used if the user is
|
-- Clean up. Many of these table names will be re-used if the user is
|
||||||
@ -282,4 +238,3 @@ DROP SCHEMA collate_tests4 CASCADE;
|
|||||||
-- must get rid of them.
|
-- must get rid of them.
|
||||||
--
|
--
|
||||||
DROP SCHEMA collate_tests CASCADE;
|
DROP SCHEMA collate_tests CASCADE;
|
||||||
DROP ROLE regress_rol_col1;
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user