-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
140680: docgen: add DO statement diagram r=DrewKimball a=taroface Added a SQL statement diagram for `DO`. The diagram looks like this: <img width="519" alt="image" src="https://github.com/user-attachments/assets/30feb56a-2085-4fa6-800c-d7920ec4fe49" /> This is necessary for the accompanying docs PR: cockroachdb/docs#19356 Epic: none Release note: none Release justification: non-production code change Co-authored-by: Ryan Kuo <[email protected]>
- Loading branch information
Showing
6 changed files
with
16 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
do_stmt ::= | ||
'DO' ( ( ( | 'LANGUAGE' ( 'PLPGSQL' ) routine_body_str ) ) )* | ||
| 'DO' 'LANGUAGE' ( 'PLPGSQL' ) routine_body_str ( ( ( | 'LANGUAGE' ( 'PLPGSQL' ) routine_body_str ) ) )* |
This file was deleted.
Oops, something went wrong.
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