mirror of
https://github.com/postgres/postgres.git
synced 2026-01-14 02:01:53 +00:00
This rename is in preparation for the introduction of recovery modules, where basic_wal_module will be used as a base template for the set of callbacks introduced. The former name did not really reflect all that. Author: Nathan Bossart Discussion: https://postgr.es/m/20221227192449.GA3672473@nathanxps13
23 lines
435 B
SQL
23 lines
435 B
SQL
CREATE TABLE test (a INT);
|
|
SELECT 1 FROM pg_switch_wal();
|
|
|
|
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}$';
|
|
|
|
DROP TABLE test;
|