Drop table if exists

pull/5025/head
Sait Talha Nisanci 2021-06-07 11:42:38 +03:00
parent fc89487e93
commit c55e44a4af
2 changed files with 3 additions and 2 deletions

View File

@ -1359,6 +1359,7 @@ SELECT create_reference_table('itemgroups');
(1 row) (1 row)
DROP TABLE IF EXISTS users ;
CREATE TABLE users ( CREATE TABLE users (
id int PRIMARY KEY, id int PRIMARY KEY,
name text, name text,

View File

@ -1,4 +1,3 @@
SET citus.next_shard_id TO 1200000; SET citus.next_shard_id TO 1200000;
SET citus.next_placement_id TO 1200000; SET citus.next_placement_id TO 1200000;
@ -1022,6 +1021,7 @@ CREATE TABLE itemgroups (
); );
SELECT create_reference_table('itemgroups'); SELECT create_reference_table('itemgroups');
DROP TABLE IF EXISTS users ;
CREATE TABLE users ( CREATE TABLE users (
id int PRIMARY KEY, id int PRIMARY KEY,
name text, name text,