-
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.
139365: docgen: update COPY TO STDOUT portions of SQL diagram r=mgartner a=taroface Updated `COPY` diagram so that it better reflects the `COPY TO` syntax that was added in 23.1 (this PR will be backported to every version up until 23.1). These changes accompany the docs updates in cockroachdb/docs#19310 Current diagram: <img width="647" alt="image" src="https://github.com/user-attachments/assets/eb70b831-3473-40aa-823f-5432a8cf2698" /> New diagram: <img width="829" alt="image" src="https://github.com/user-attachments/assets/314e1345-cec8-4a72-9be2-fb4b2f2885ee" /> Epic: none Release note: none Release justification: non-production code change 140071: storage: covert SizeSpec to protobuf r=RaduBerinde a=andrewbaptist This commit moves SizeSpec to the storagepb directory and converts it toa protobuf. Additionally it pulls shared storage into the global StorageConfig file. Epic: none Release note: None 140241: multiregionccl: deflake TestColdStartLatency r=rafiss a=rafiss Similar to what we're seeing in #140172 and the issues linked to #140187, this test is flaky due to running with autocommit_before_ddl=true in a multitenant setup. fixes #140174 Release note: None Co-authored-by: Ryan Kuo <[email protected]> Co-authored-by: Andrew Baptist <[email protected]> Co-authored-by: Rafi Shamim <[email protected]>
- Loading branch information
Showing
28 changed files
with
259 additions
and
206 deletions.
There are no files selected for viewing
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,16 +1,16 @@ | ||
copy_stmt ::= | ||
'COPY' table_name opt_column_list 'FROM' 'STDIN' 'WITH' copy_options ( ( copy_options ) )* | ||
| 'COPY' table_name opt_column_list 'FROM' 'STDIN' copy_options ( ( copy_options ) )* | ||
| 'COPY' table_name opt_column_list 'FROM' 'STDIN' 'WITH' '(' copy_generic_options_list ')' | ||
| 'COPY' table_name opt_column_list 'FROM' 'STDIN' '(' copy_generic_options_list ')' | ||
| 'COPY' table_name opt_column_list 'FROM' 'STDIN' 'WITH' | ||
| 'COPY' table_name opt_column_list 'FROM' 'STDIN' | ||
| 'COPY' table_name opt_column_list 'FROM' 'STDIN' | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' 'WITH' copy_options ( ( copy_options ) )* | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' copy_options ( ( copy_options ) )* | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' 'WITH' '(' copy_generic_options_list ')' | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' '(' copy_generic_options_list ')' | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' 'WITH' | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' | ||
| 'COPY' table_name opt_column_list 'TO' 'STDOUT' | ||
| 'COPY' '(' copy_to_stmt ')' 'TO' 'STDOUT' 'WITH' copy_options ( ( copy_options ) )* | ||
| 'COPY' '(' copy_to_stmt ')' 'TO' 'STDOUT' copy_options ( ( copy_options ) )* | ||
| 'COPY' '(' copy_to_stmt ')' 'TO' 'STDOUT' 'WITH' '(' copy_generic_options_list ')' | ||
| 'COPY' '(' copy_to_stmt ')' 'TO' 'STDOUT' '(' copy_generic_options_list ')' | ||
| 'COPY' '(' copy_to_stmt ')' 'TO' 'STDOUT' | ||
| 'COPY' '(' query ')' 'TO' 'STDOUT' 'WITH' copy_options ( ( copy_options ) )* | ||
| 'COPY' '(' query ')' 'TO' 'STDOUT' copy_options ( ( copy_options ) )* | ||
| 'COPY' '(' query ')' 'TO' 'STDOUT' 'WITH' | ||
| 'COPY' '(' query ')' 'TO' 'STDOUT' | ||
| 'COPY' '(' query ')' 'TO' 'STDOUT' |
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
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
Oops, something went wrong.