Consistently use "superuser" instead of "super user"
[pgsql.git] / src / test / regress / input / tablespace.source
blobc133e73499f1f8cf9d3a162857d2a115ae8f5787
1 -- create a tablespace using WITH clause
2 CREATE TABLESPACE regress_tblspacewith LOCATION '@testtablespace@' WITH (some_nonexistent_parameter = true); -- fail
3 CREATE TABLESPACE regress_tblspacewith LOCATION '@testtablespace@' WITH (random_page_cost = 3.0); -- ok
5 -- check to see the parameter was used
6 SELECT spcoptions FROM pg_tablespace WHERE spcname = 'regress_tblspacewith';
8 -- drop the tablespace so we can re-use the location
9 DROP TABLESPACE regress_tblspacewith;
11 -- create a tablespace we can use
12 CREATE TABLESPACE regress_tblspace LOCATION '@testtablespace@';
14 -- try setting and resetting some properties for the new tablespace
15 ALTER TABLESPACE regress_tblspace SET (random_page_cost = 1.0, seq_page_cost = 1.1);
16 ALTER TABLESPACE regress_tblspace SET (some_nonexistent_parameter = true);  -- fail
17 ALTER TABLESPACE regress_tblspace RESET (random_page_cost = 2.0); -- fail
18 ALTER TABLESPACE regress_tblspace RESET (random_page_cost, effective_io_concurrency); -- ok
20 -- REINDEX (TABLESPACE)
21 -- catalogs and system tablespaces
22 -- system catalog, fail
23 REINDEX (TABLESPACE regress_tblspace) TABLE pg_am;
24 REINDEX (TABLESPACE regress_tblspace) TABLE CONCURRENTLY pg_am;
25 -- shared catalog, fail
26 REINDEX (TABLESPACE regress_tblspace) TABLE pg_authid;
27 REINDEX (TABLESPACE regress_tblspace) TABLE CONCURRENTLY pg_authid;
28 -- toast relations, fail
29 REINDEX (TABLESPACE regress_tblspace) INDEX pg_toast.pg_toast_1260_index;
30 REINDEX (TABLESPACE regress_tblspace) INDEX CONCURRENTLY pg_toast.pg_toast_1260_index;
31 REINDEX (TABLESPACE regress_tblspace) TABLE pg_toast.pg_toast_1260;
32 REINDEX (TABLESPACE regress_tblspace) TABLE CONCURRENTLY pg_toast.pg_toast_1260;
33 -- system catalog, fail
34 REINDEX (TABLESPACE pg_global) TABLE pg_authid;
35 REINDEX (TABLESPACE pg_global) TABLE CONCURRENTLY pg_authid;
37 -- table with toast relation
38 CREATE TABLE regress_tblspace_test_tbl (num1 bigint, num2 double precision, t text);
39 INSERT INTO regress_tblspace_test_tbl (num1, num2, t)
40   SELECT round(random()*100), random(), 'text'
41   FROM generate_series(1, 10) s(i);
42 CREATE INDEX regress_tblspace_test_tbl_idx ON regress_tblspace_test_tbl (num1);
43 -- move to global tablespace, fail
44 REINDEX (TABLESPACE pg_global) INDEX regress_tblspace_test_tbl_idx;
45 REINDEX (TABLESPACE pg_global) INDEX CONCURRENTLY regress_tblspace_test_tbl_idx;
47 -- check transactional behavior of REINDEX (TABLESPACE)
48 BEGIN;
49 REINDEX (TABLESPACE regress_tblspace) INDEX regress_tblspace_test_tbl_idx;
50 REINDEX (TABLESPACE regress_tblspace) TABLE regress_tblspace_test_tbl;
51 ROLLBACK;
52 -- no relation moved to the new tablespace
53 SELECT c.relname FROM pg_class c, pg_tablespace s
54   WHERE c.reltablespace = s.oid AND s.spcname = 'regress_tblspace';
56 -- check that all indexes are moved to a new tablespace with different
57 -- relfilenode.
58 -- Save first the existing relfilenode for the toast and main relations.
59 SELECT relfilenode as main_filenode FROM pg_class
60   WHERE relname = 'regress_tblspace_test_tbl_idx' \gset
61 SELECT relfilenode as toast_filenode FROM pg_class
62   WHERE oid =
63     (SELECT i.indexrelid
64        FROM pg_class c,
65             pg_index i
66        WHERE i.indrelid = c.reltoastrelid AND
67              c.relname = 'regress_tblspace_test_tbl') \gset
68 REINDEX (TABLESPACE regress_tblspace) TABLE regress_tblspace_test_tbl;
69 SELECT c.relname FROM pg_class c, pg_tablespace s
70   WHERE c.reltablespace = s.oid AND s.spcname = 'regress_tblspace'
71   ORDER BY c.relname;
72 ALTER TABLE regress_tblspace_test_tbl SET TABLESPACE regress_tblspace;
73 ALTER TABLE regress_tblspace_test_tbl SET TABLESPACE pg_default;
74 SELECT c.relname FROM pg_class c, pg_tablespace s
75   WHERE c.reltablespace = s.oid AND s.spcname = 'regress_tblspace'
76   ORDER BY c.relname;
77 -- Move back to the default tablespace.
78 ALTER INDEX regress_tblspace_test_tbl_idx SET TABLESPACE pg_default;
79 SELECT c.relname FROM pg_class c, pg_tablespace s
80   WHERE c.reltablespace = s.oid AND s.spcname = 'regress_tblspace'
81   ORDER BY c.relname;
82 REINDEX (TABLESPACE regress_tblspace, CONCURRENTLY) TABLE regress_tblspace_test_tbl;
83 SELECT c.relname FROM pg_class c, pg_tablespace s
84   WHERE c.reltablespace = s.oid AND s.spcname = 'regress_tblspace'
85   ORDER BY c.relname;
86 SELECT relfilenode = :main_filenode AS main_same FROM pg_class
87   WHERE relname = 'regress_tblspace_test_tbl_idx';
88 SELECT relfilenode = :toast_filenode as toast_same FROM pg_class
89   WHERE oid =
90     (SELECT i.indexrelid
91        FROM pg_class c,
92             pg_index i
93        WHERE i.indrelid = c.reltoastrelid AND
94              c.relname = 'regress_tblspace_test_tbl');
95 DROP TABLE regress_tblspace_test_tbl;
97 -- REINDEX (TABLESPACE) with partitions
98 -- Create a partition tree and check the set of relations reindexed
99 -- with their new tablespace.
100 CREATE TABLE tbspace_reindex_part (c1 int, c2 int) PARTITION BY RANGE (c1);
101 CREATE TABLE tbspace_reindex_part_0 PARTITION OF tbspace_reindex_part
102   FOR VALUES FROM (0) TO (10) PARTITION BY list (c2);
103 CREATE TABLE tbspace_reindex_part_0_1 PARTITION OF tbspace_reindex_part_0
104   FOR VALUES IN (1);
105 CREATE TABLE tbspace_reindex_part_0_2 PARTITION OF tbspace_reindex_part_0
106   FOR VALUES IN (2);
107 -- This partitioned table will have no partitions.
108 CREATE TABLE tbspace_reindex_part_10 PARTITION OF tbspace_reindex_part
109    FOR VALUES FROM (10) TO (20) PARTITION BY list (c2);
110 -- Create some partitioned indexes
111 CREATE INDEX tbspace_reindex_part_index ON ONLY tbspace_reindex_part (c1);
112 CREATE INDEX tbspace_reindex_part_index_0 ON ONLY tbspace_reindex_part_0 (c1);
113 ALTER INDEX tbspace_reindex_part_index ATTACH PARTITION tbspace_reindex_part_index_0;
114 -- This partitioned index will have no partitions.
115 CREATE INDEX tbspace_reindex_part_index_10 ON ONLY tbspace_reindex_part_10 (c1);
116 ALTER INDEX tbspace_reindex_part_index ATTACH PARTITION tbspace_reindex_part_index_10;
117 CREATE INDEX tbspace_reindex_part_index_0_1 ON ONLY tbspace_reindex_part_0_1 (c1);
118 ALTER INDEX tbspace_reindex_part_index_0 ATTACH PARTITION tbspace_reindex_part_index_0_1;
119 CREATE INDEX tbspace_reindex_part_index_0_2 ON ONLY tbspace_reindex_part_0_2 (c1);
120 ALTER INDEX tbspace_reindex_part_index_0 ATTACH PARTITION tbspace_reindex_part_index_0_2;
121 SELECT relid, parentrelid, level FROM pg_partition_tree('tbspace_reindex_part_index')
122   ORDER BY relid, level;
123 -- Track the original tablespace, relfilenode and OID of each index
124 -- in the tree.
125 CREATE TEMP TABLE reindex_temp_before AS
126   SELECT oid, relname, relfilenode, reltablespace
127   FROM pg_class
128     WHERE relname ~ 'tbspace_reindex_part_index';
129 REINDEX (TABLESPACE regress_tblspace, CONCURRENTLY) TABLE tbspace_reindex_part;
130 -- REINDEX CONCURRENTLY changes the OID of the old relation, hence a check
131 -- based on the relation name below.
132 SELECT b.relname,
133        CASE WHEN a.relfilenode = b.relfilenode THEN 'relfilenode is unchanged'
134        ELSE 'relfilenode has changed' END AS filenode,
135        CASE WHEN a.reltablespace = b.reltablespace THEN 'reltablespace is unchanged'
136        ELSE 'reltablespace has changed' END AS tbspace
137   FROM reindex_temp_before b JOIN pg_class a ON b.relname = a.relname
138   ORDER BY 1;
139 DROP TABLE tbspace_reindex_part;
141 -- create a schema we can use
142 CREATE SCHEMA testschema;
144 -- try a table
145 CREATE TABLE testschema.foo (i int) TABLESPACE regress_tblspace;
146 SELECT relname, spcname FROM pg_catalog.pg_tablespace t, pg_catalog.pg_class c
147     where c.reltablespace = t.oid AND c.relname = 'foo';
149 INSERT INTO testschema.foo VALUES(1);
150 INSERT INTO testschema.foo VALUES(2);
152 -- tables from dynamic sources
153 CREATE TABLE testschema.asselect TABLESPACE regress_tblspace AS SELECT 1;
154 SELECT relname, spcname FROM pg_catalog.pg_tablespace t, pg_catalog.pg_class c
155     where c.reltablespace = t.oid AND c.relname = 'asselect';
157 PREPARE selectsource(int) AS SELECT $1;
158 CREATE TABLE testschema.asexecute TABLESPACE regress_tblspace
159     AS EXECUTE selectsource(2);
160 SELECT relname, spcname FROM pg_catalog.pg_tablespace t, pg_catalog.pg_class c
161     where c.reltablespace = t.oid AND c.relname = 'asexecute';
163 -- index
164 CREATE INDEX foo_idx on testschema.foo(i) TABLESPACE regress_tblspace;
165 SELECT relname, spcname FROM pg_catalog.pg_tablespace t, pg_catalog.pg_class c
166     where c.reltablespace = t.oid AND c.relname = 'foo_idx';
168 -- check \d output
169 \d testschema.foo
170 \d testschema.foo_idx
173 -- partitioned table
175 CREATE TABLE testschema.part (a int) PARTITION BY LIST (a);
176 SET default_tablespace TO pg_global;
177 CREATE TABLE testschema.part_1 PARTITION OF testschema.part FOR VALUES IN (1);
178 RESET default_tablespace;
179 CREATE TABLE testschema.part_1 PARTITION OF testschema.part FOR VALUES IN (1);
180 SET default_tablespace TO regress_tblspace;
181 CREATE TABLE testschema.part_2 PARTITION OF testschema.part FOR VALUES IN (2);
182 SET default_tablespace TO pg_global;
183 CREATE TABLE testschema.part_3 PARTITION OF testschema.part FOR VALUES IN (3);
184 ALTER TABLE testschema.part SET TABLESPACE regress_tblspace;
185 CREATE TABLE testschema.part_3 PARTITION OF testschema.part FOR VALUES IN (3);
186 CREATE TABLE testschema.part_4 PARTITION OF testschema.part FOR VALUES IN (4)
187   TABLESPACE pg_default;
188 CREATE TABLE testschema.part_56 PARTITION OF testschema.part FOR VALUES IN (5, 6)
189   PARTITION BY LIST (a);
190 ALTER TABLE testschema.part SET TABLESPACE pg_default;
191 CREATE TABLE testschema.part_78 PARTITION OF testschema.part FOR VALUES IN (7, 8)
192   PARTITION BY LIST (a);
193 CREATE TABLE testschema.part_910 PARTITION OF testschema.part FOR VALUES IN (9, 10)
194   PARTITION BY LIST (a) TABLESPACE regress_tblspace;
195 RESET default_tablespace;
196 CREATE TABLE testschema.part_78 PARTITION OF testschema.part FOR VALUES IN (7, 8)
197   PARTITION BY LIST (a);
199 SELECT relname, spcname FROM pg_catalog.pg_class c
200     JOIN pg_catalog.pg_namespace n ON (c.relnamespace = n.oid)
201     LEFT JOIN pg_catalog.pg_tablespace t ON c.reltablespace = t.oid
202     where c.relname LIKE 'part%' AND n.nspname = 'testschema' order by relname;
203 RESET default_tablespace;
204 DROP TABLE testschema.part;
206 -- partitioned index
207 CREATE TABLE testschema.part (a int) PARTITION BY LIST (a);
208 CREATE TABLE testschema.part1 PARTITION OF testschema.part FOR VALUES IN (1);
209 CREATE INDEX part_a_idx ON testschema.part (a) TABLESPACE regress_tblspace;
210 CREATE TABLE testschema.part2 PARTITION OF testschema.part FOR VALUES IN (2);
211 SELECT relname, spcname FROM pg_catalog.pg_tablespace t, pg_catalog.pg_class c
212     where c.reltablespace = t.oid AND c.relname LIKE 'part%_idx';
213 \d testschema.part
214 \d+ testschema.part
215 \d testschema.part1
216 \d+ testschema.part1
217 \d testschema.part_a_idx
218 \d+ testschema.part_a_idx
220 -- partitioned rels cannot specify the default tablespace.  These fail:
221 CREATE TABLE testschema.dflt (a int PRIMARY KEY) PARTITION BY LIST (a) TABLESPACE pg_default;
222 CREATE TABLE testschema.dflt (a int PRIMARY KEY USING INDEX TABLESPACE pg_default) PARTITION BY LIST (a);
223 SET default_tablespace TO 'pg_default';
224 CREATE TABLE testschema.dflt (a int PRIMARY KEY) PARTITION BY LIST (a) TABLESPACE regress_tblspace;
225 CREATE TABLE testschema.dflt (a int PRIMARY KEY USING INDEX TABLESPACE regress_tblspace) PARTITION BY LIST (a);
226 -- but these work:
227 CREATE TABLE testschema.dflt (a int PRIMARY KEY USING INDEX TABLESPACE regress_tblspace) PARTITION BY LIST (a) TABLESPACE regress_tblspace;
228 SET default_tablespace TO '';
229 CREATE TABLE testschema.dflt2 (a int PRIMARY KEY) PARTITION BY LIST (a);
230 DROP TABLE testschema.dflt, testschema.dflt2;
232 -- check that default_tablespace doesn't affect ALTER TABLE index rebuilds
233 CREATE TABLE testschema.test_default_tab(id bigint) TABLESPACE regress_tblspace;
234 INSERT INTO testschema.test_default_tab VALUES (1);
235 CREATE INDEX test_index1 on testschema.test_default_tab (id);
236 CREATE INDEX test_index2 on testschema.test_default_tab (id) TABLESPACE regress_tblspace;
237 ALTER TABLE testschema.test_default_tab ADD CONSTRAINT test_index3 PRIMARY KEY (id);
238 ALTER TABLE testschema.test_default_tab ADD CONSTRAINT test_index4 UNIQUE (id) USING INDEX TABLESPACE regress_tblspace;
240 \d testschema.test_index1
241 \d testschema.test_index2
242 \d testschema.test_index3
243 \d testschema.test_index4
244 -- use a custom tablespace for default_tablespace
245 SET default_tablespace TO regress_tblspace;
246 -- tablespace should not change if no rewrite
247 ALTER TABLE testschema.test_default_tab ALTER id TYPE bigint;
248 \d testschema.test_index1
249 \d testschema.test_index2
250 \d testschema.test_index3
251 \d testschema.test_index4
252 SELECT * FROM testschema.test_default_tab;
253 -- tablespace should not change even if there is an index rewrite
254 ALTER TABLE testschema.test_default_tab ALTER id TYPE int;
255 \d testschema.test_index1
256 \d testschema.test_index2
257 \d testschema.test_index3
258 \d testschema.test_index4
259 SELECT * FROM testschema.test_default_tab;
260 -- now use the default tablespace for default_tablespace
261 SET default_tablespace TO '';
262 -- tablespace should not change if no rewrite
263 ALTER TABLE testschema.test_default_tab ALTER id TYPE int;
264 \d testschema.test_index1
265 \d testschema.test_index2
266 \d testschema.test_index3
267 \d testschema.test_index4
268 -- tablespace should not change even if there is an index rewrite
269 ALTER TABLE testschema.test_default_tab ALTER id TYPE bigint;
270 \d testschema.test_index1
271 \d testschema.test_index2
272 \d testschema.test_index3
273 \d testschema.test_index4
274 DROP TABLE testschema.test_default_tab;
276 -- check that default_tablespace doesn't affect ALTER TABLE index rebuilds
277 -- (this time with a partitioned table)
278 CREATE TABLE testschema.test_default_tab_p(id bigint, val bigint)
279     PARTITION BY LIST (id) TABLESPACE regress_tblspace;
280 CREATE TABLE testschema.test_default_tab_p1 PARTITION OF testschema.test_default_tab_p
281     FOR VALUES IN (1);
282 INSERT INTO testschema.test_default_tab_p VALUES (1);
283 CREATE INDEX test_index1 on testschema.test_default_tab_p (val);
284 CREATE INDEX test_index2 on testschema.test_default_tab_p (val) TABLESPACE regress_tblspace;
285 ALTER TABLE testschema.test_default_tab_p ADD CONSTRAINT test_index3 PRIMARY KEY (id);
286 ALTER TABLE testschema.test_default_tab_p ADD CONSTRAINT test_index4 UNIQUE (id) USING INDEX TABLESPACE regress_tblspace;
288 \d testschema.test_index1
289 \d testschema.test_index2
290 \d testschema.test_index3
291 \d testschema.test_index4
292 -- use a custom tablespace for default_tablespace
293 SET default_tablespace TO regress_tblspace;
294 -- tablespace should not change if no rewrite
295 ALTER TABLE testschema.test_default_tab_p ALTER val TYPE bigint;
296 \d testschema.test_index1
297 \d testschema.test_index2
298 \d testschema.test_index3
299 \d testschema.test_index4
300 SELECT * FROM testschema.test_default_tab_p;
301 -- tablespace should not change even if there is an index rewrite
302 ALTER TABLE testschema.test_default_tab_p ALTER val TYPE int;
303 \d testschema.test_index1
304 \d testschema.test_index2
305 \d testschema.test_index3
306 \d testschema.test_index4
307 SELECT * FROM testschema.test_default_tab_p;
308 -- now use the default tablespace for default_tablespace
309 SET default_tablespace TO '';
310 -- tablespace should not change if no rewrite
311 ALTER TABLE testschema.test_default_tab_p ALTER val TYPE int;
312 \d testschema.test_index1
313 \d testschema.test_index2
314 \d testschema.test_index3
315 \d testschema.test_index4
316 -- tablespace should not change even if there is an index rewrite
317 ALTER TABLE testschema.test_default_tab_p ALTER val TYPE bigint;
318 \d testschema.test_index1
319 \d testschema.test_index2
320 \d testschema.test_index3
321 \d testschema.test_index4
322 DROP TABLE testschema.test_default_tab_p;
324 -- check that default_tablespace affects index additions in ALTER TABLE
325 CREATE TABLE testschema.test_tab(id int) TABLESPACE regress_tblspace;
326 INSERT INTO testschema.test_tab VALUES (1);
327 SET default_tablespace TO regress_tblspace;
328 ALTER TABLE testschema.test_tab ADD CONSTRAINT test_tab_unique UNIQUE (id);
329 SET default_tablespace TO '';
330 ALTER TABLE testschema.test_tab ADD CONSTRAINT test_tab_pkey PRIMARY KEY (id);
331 \d testschema.test_tab_unique
332 \d testschema.test_tab_pkey
333 SELECT * FROM testschema.test_tab;
334 DROP TABLE testschema.test_tab;
336 -- check that default_tablespace is handled correctly by multi-command
337 -- ALTER TABLE that includes a tablespace-preserving rewrite
338 CREATE TABLE testschema.test_tab(a int, b int, c int);
339 SET default_tablespace TO regress_tblspace;
340 ALTER TABLE testschema.test_tab ADD CONSTRAINT test_tab_unique UNIQUE (a);
341 CREATE INDEX test_tab_a_idx ON testschema.test_tab (a);
342 SET default_tablespace TO '';
343 CREATE INDEX test_tab_b_idx ON testschema.test_tab (b);
344 \d testschema.test_tab_unique
345 \d testschema.test_tab_a_idx
346 \d testschema.test_tab_b_idx
347 ALTER TABLE testschema.test_tab ALTER b TYPE bigint, ADD UNIQUE (c);
348 \d testschema.test_tab_unique
349 \d testschema.test_tab_a_idx
350 \d testschema.test_tab_b_idx
351 DROP TABLE testschema.test_tab;
353 -- let's try moving a table from one place to another
354 CREATE TABLE testschema.atable AS VALUES (1), (2);
355 CREATE UNIQUE INDEX anindex ON testschema.atable(column1);
357 ALTER TABLE testschema.atable SET TABLESPACE regress_tblspace;
358 ALTER INDEX testschema.anindex SET TABLESPACE regress_tblspace;
359 ALTER INDEX testschema.part_a_idx SET TABLESPACE pg_global;
360 ALTER INDEX testschema.part_a_idx SET TABLESPACE pg_default;
361 ALTER INDEX testschema.part_a_idx SET TABLESPACE regress_tblspace;
363 INSERT INTO testschema.atable VALUES(3);        -- ok
364 INSERT INTO testschema.atable VALUES(1);        -- fail (checks index)
365 SELECT COUNT(*) FROM testschema.atable;         -- checks heap
367 -- Will fail with bad path
368 CREATE TABLESPACE regress_badspace LOCATION '/no/such/location';
370 -- No such tablespace
371 CREATE TABLE bar (i int) TABLESPACE regress_nosuchspace;
373 -- Fail, in use for some partitioned object
374 DROP TABLESPACE regress_tblspace;
375 ALTER INDEX testschema.part_a_idx SET TABLESPACE pg_default;
376 -- Fail, not empty
377 DROP TABLESPACE regress_tblspace;
379 CREATE ROLE regress_tablespace_user1 login;
380 CREATE ROLE regress_tablespace_user2 login;
381 GRANT USAGE ON SCHEMA testschema TO regress_tablespace_user2;
383 ALTER TABLESPACE regress_tblspace OWNER TO regress_tablespace_user1;
385 CREATE TABLE testschema.tablespace_acl (c int);
386 -- new owner lacks permission to create this index from scratch
387 CREATE INDEX k ON testschema.tablespace_acl (c) TABLESPACE regress_tblspace;
388 ALTER TABLE testschema.tablespace_acl OWNER TO regress_tablespace_user2;
390 SET SESSION ROLE regress_tablespace_user2;
391 CREATE TABLE tablespace_table (i int) TABLESPACE regress_tblspace; -- fail
392 ALTER TABLE testschema.tablespace_acl ALTER c TYPE bigint;
393 REINDEX (TABLESPACE regress_tblspace) TABLE tablespace_table; -- fail
394 REINDEX (TABLESPACE regress_tblspace, CONCURRENTLY) TABLE tablespace_table; -- fail
395 RESET ROLE;
397 ALTER TABLESPACE regress_tblspace RENAME TO regress_tblspace_renamed;
399 ALTER TABLE ALL IN TABLESPACE regress_tblspace_renamed SET TABLESPACE pg_default;
400 ALTER INDEX ALL IN TABLESPACE regress_tblspace_renamed SET TABLESPACE pg_default;
402 -- Should show notice that nothing was done
403 ALTER TABLE ALL IN TABLESPACE regress_tblspace_renamed SET TABLESPACE pg_default;
405 -- Should succeed
406 DROP TABLESPACE regress_tblspace_renamed;
408 DROP SCHEMA testschema CASCADE;
410 DROP ROLE regress_tablespace_user1;
411 DROP ROLE regress_tablespace_user2;