-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
138244: sql/parser: parse CREATE LOGICALLY REPLICATED TABLE options seperately r=dt a=msbutler The two different CREATE LDR incancatations will require different options, so we should validate which options apply to which incantation at parsing time. Epic: none Release note: none 138327: rac2: fix replicaState.desc access race r=stevendanna a=sumeerbhola The ReplicaID is a constant, so the race is fixed by duplicating the ReplicaID as an immutable field. Fixes #138033 Epic: CRDB-37515 Release note: None Co-authored-by: Michael Butler <[email protected]> Co-authored-by: sumeerbhola <[email protected]>
- Loading branch information
Showing
5 changed files
with
94 additions
and
35 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
docs/generated/sql/bnf/create_logical_replication_stream_stmt.bnf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
create_logical_replication_stream_stmt ::= | ||
'CREATE' 'LOGICALLY' 'REPLICATED' logical_replication_resources 'FROM' logical_replication_resources 'ON' string_or_placeholder opt_logical_replication_options | ||
'CREATE' 'LOGICALLY' 'REPLICATED' logical_replication_resources 'FROM' logical_replication_resources 'ON' string_or_placeholder opt_logical_replication_create_table_options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters