-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add support comment in create view
for MySQL and MariaDb
#1913
Merged
manticore-projects
merged 6 commits into
JSQLParser:master
from
jxnu-liguobin:view-comment
Dec 14, 2023
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5705,13 +5705,44 @@ Analyze Analyze(): | |
} | ||
} | ||
|
||
ColumnDefinition ColumnDefinitionItem(): | ||
{ | ||
Token tk = null; | ||
Token tk2 = null; | ||
String item = null; | ||
ColumnDefinition columnWithComment = new ColumnDefinition(); | ||
} | ||
{ | ||
( item=RelObjectName() { columnWithComment.withColumnName(item); } ) | ||
[ tk=<K_COMMENT> tk2=<S_CHAR_LITERAL> { columnWithComment.addColumnSpecs(tk.image).addColumnSpecs(tk2.image); } ] | ||
{ | ||
return columnWithComment; | ||
} | ||
} | ||
|
||
List<ColumnDefinition> ColumnDefinitionItemList(): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please try to use an |
||
{ | ||
List<ColumnDefinition> retval = new ArrayList<ColumnDefinition>(); | ||
ColumnDefinition img = null; | ||
} | ||
{ | ||
"(" | ||
img=ColumnDefinitionItem() { retval.add(img); } | ||
( "," img=ColumnDefinitionItem() { retval.add(img); } )* | ||
")" | ||
{ | ||
return retval; | ||
} | ||
} | ||
|
||
CreateView CreateView(boolean isUsingOrReplace): | ||
{ | ||
CreateView createView = new CreateView(); | ||
Table view = null; | ||
Select select = null; | ||
List<String> columnNames = null; | ||
List<ColumnDefinition> columnNames = null; | ||
Token tk = null; | ||
List<String> commentTokens = null; | ||
} | ||
{ | ||
{ createView.setOrReplace(isUsingOrReplace);} | ||
|
@@ -5727,13 +5758,36 @@ CreateView CreateView(boolean isUsingOrReplace): | |
<K_VIEW> view=Table() { createView.setView(view); } | ||
[LOOKAHEAD(3) <K_AUTO> <K_REFRESH> (tk=<K_YES> | tk=<K_NO>) { createView.setAutoRefresh(AutoRefreshOption.from(tk.image)); } ] | ||
[LOOKAHEAD(3) <K_IF> <K_NOT> <K_EXISTS> {createView.setIfNotExists(true);}] | ||
[ columnNames = ColumnsNamesList() { createView.setColumnNames(columnNames); } ] | ||
[ columnNames=ColumnDefinitionItemList( ) { createView.setColumnNames(columnNames); } ] | ||
[ commentTokens=CreateViewTailComment( ) { createView.setViewCommentOptions(commentTokens); } ] | ||
<K_AS> | ||
select=Select( ) { createView.setSelect(select); } | ||
[ <K_WITH> <K_READ> <K_ONLY> { createView.setWithReadOnly(true); } ] | ||
{ return createView; } | ||
} | ||
|
||
List<String> CreateViewTailComment(): | ||
{ | ||
Token tk = null; | ||
Token tk2 = null; | ||
String op = null; | ||
List<String> result = new ArrayList<String>(); | ||
} | ||
{ | ||
tk=<K_COMMENT> | ||
[ "=" { op = "="; } ] | ||
tk2 = <S_CHAR_LITERAL> { | ||
result.add(""); | ||
result.add(tk.image); | ||
if (op != null) { | ||
result.add(op); | ||
} | ||
result.add(tk2.image); | ||
} | ||
{ return result;} | ||
} | ||
|
||
|
||
ReferentialAction.Action Action(): | ||
{ | ||
ReferentialAction.Action action = null; | ||
|
@@ -5778,7 +5832,6 @@ List<String> CreateParameter(): | |
Token tk = null, tk2 = null; | ||
Expression exp = null; | ||
ColDataType colDataType; | ||
|
||
List<String> param = new ArrayList<String>(); | ||
} | ||
{ | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should be a similar Production already, please try to re-use it.