File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6001,8 +6001,9 @@ func TestChangefeedTruncateOrDrop(t *testing.T) {
6001
6001
return err
6002
6002
}
6003
6003
6004
- sqlDB .Exec (t , `CREATE TABLE truncate (a INT PRIMARY KEY)` )
6005
- sqlDB .Exec (t , `CREATE TABLE truncate_cascade (b INT PRIMARY KEY REFERENCES truncate (a))` )
6004
+ // TODO(#151941): Re-enable auto schema_locked for this test.
6005
+ sqlDB .Exec (t , `CREATE TABLE truncate (a INT PRIMARY KEY) WITH (schema_locked=false)` )
6006
+ sqlDB .Exec (t , `CREATE TABLE truncate_cascade (b INT PRIMARY KEY REFERENCES truncate (a)) WITH (schema_locked=false)` )
6006
6007
sqlDB .Exec (t ,
6007
6008
`BEGIN; INSERT INTO truncate VALUES (1); INSERT INTO truncate_cascade VALUES (1); COMMIT` )
6008
6009
truncate := feed (t , f , `CREATE CHANGEFEED FOR truncate` )
You can’t perform that action at this time.
0 commit comments