We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2312c3 commit cbcb962Copy full SHA for cbcb962
ebssurrogate/files/unit-tests/unit-test-01.sql
@@ -1,5 +1,12 @@
1
BEGIN;
2
CREATE EXTENSION IF NOT EXISTS pgtap;
3
+do $$
4
+begin
5
+ if not exists (select 1 from pg_extension where extname = 'orioledb') then
6
+ create extension if not exists orioledb;
7
+ end if;
8
+end $$;
9
+
10
SELECT plan(8);
11
12
-- Check installed extensions
0 commit comments