You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#155521
Release note (ops change): ensure the user can run CREATE LOGICAL REPLICATION
STREAM where the source table has a column with a sequence expression.
dbB.ExpectErr(t, " this schema change is disallowed on table foo because it is referenced by one or more logical replication jobs", "CREATE INDEX idx3 ON b.foo (pi) WHERE pk = 0")
2654
2654
}
2655
2655
2656
+
// TODO(msbutler): migrate TestLogicalReplicationCreationChecks to this test
2657
+
// which has subtests and no weird cross case dependencies.
dbB.ExpectErr(t, "references sequences with IDs", "CREATE LOGICAL REPLICATION STREAM FROM TABLE tab_with_seq ON $1 INTO TABLE tab_with_seq", dbAURL.String())
2686
+
})
2687
+
}
2688
+
2656
2689
// TestLogicalReplicationCreationChecks verifies that we check that the table
2657
2690
// schemas are compatible when creating the replication stream.
0 commit comments