mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
507 B
30 lines
507 B
|
4 years ago
|
CREATE TABLE test (a INT);
|
||
|
|
SELECT 1 FROM pg_switch_wal();
|
||
|
|
?column?
|
||
|
|
----------
|
||
|
|
1
|
||
|
|
(1 row)
|
||
|
|
|
||
|
|
DO $$
|
||
|
|
DECLARE
|
||
|
|
archived bool;
|
||
|
|
loops int := 0;
|
||
|
|
BEGIN
|
||
|
|
LOOP
|
||
|
|
archived := count(*) > 0 FROM pg_ls_dir('.', false, false) a
|
||
|
|
WHERE a ~ '^[0-9A-F]{24}$';
|
||
|
|
IF archived OR loops > 120 * 10 THEN EXIT; END IF;
|
||
|
|
PERFORM pg_sleep(0.1);
|
||
|
|
loops := loops + 1;
|
||
|
|
END LOOP;
|
||
|
|
END
|
||
|
|
$$;
|
||
|
|
SELECT count(*) > 0 FROM pg_ls_dir('.', false, false) a
|
||
|
|
WHERE a ~ '^[0-9A-F]{24}$';
|
||
|
|
?column?
|
||
|
|
----------
|
||
|
|
t
|
||
|
|
(1 row)
|
||
|
|
|
||
|
|
DROP TABLE test;
|