summaryrefslogtreecommitdiff
path: root/contrib/basic_archive/sql
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-01-25 14:36:51 +0900
committerMichael Paquier <michael@paquier.xyz>2023-01-25 14:36:51 +0900
commit0ad3c60caf5f77edfefaf8850fbba5ea4fe28640 (patch)
tree0edd80514358104a8ac00ca35f23e5b4f69219ef /contrib/basic_archive/sql
parent239b1753421ccbd52f4f628a9265c3034d38b80f (diff)
Rename contrib module basic_archive to basic_wal_module
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
Diffstat (limited to 'contrib/basic_archive/sql')
-rw-r--r--contrib/basic_archive/sql/basic_archive.sql22
1 files changed, 0 insertions, 22 deletions
diff --git a/contrib/basic_archive/sql/basic_archive.sql b/contrib/basic_archive/sql/basic_archive.sql
deleted file mode 100644
index 14e236d57ab..00000000000
--- a/contrib/basic_archive/sql/basic_archive.sql
+++ /dev/null
@@ -1,22 +0,0 @@
-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;