blob: 88be76aa43a3e6fe1346d83b5ee6c300f2b2913c [file] [log] [blame]
CREATE TABLE table1 (a STRING, b STRING, primary key (a) disable);
CREATE TABLE table2 (a STRING, b STRING, primary key (a) disable rely);
alter table table2 add constraint fk1 foreign key (c) references table1(a) disable novalidate;