Skip to content

Commit d845381

Browse files
author
Christopher Jones
committed
Drop demo table for idempotency
1 parent 9c5905a commit d845381

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/demo.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,4 +257,6 @@ COMMIT;
257257
-- The DBA must grant access:
258258
-- GRANT CHANGE NOTIFICATION TO myuser;
259259

260-
create table cqntable (k number);
260+
BEGIN EXECUTE IMMEDIATE 'DROP TABLE cqntable'; EXCEPTION WHEN OTHERS THEN IF SQLCODE <> -942 THEN RAISE; END IF; END;
261+
/
262+
CREATE TABLE cqntable (k NUMBER);

0 commit comments

Comments
 (0)