Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5c30fcfa
Commit
5c30fcfa
authored
May 31, 2017
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: C++ comments
parent
05873ffb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
sql/sql_yacc.yy
sql/sql_yacc.yy
+8
-7
No files found.
sql/sql_yacc.yy
View file @
5c30fcfa
...
...
@@ -14998,8 +14998,9 @@ set_stmt_option_value_following_option_type_list:
*/
option_value_following_option_type
| set_stmt_option_value_following_option_type_list ',' option_value_following_option_type
;
/
/ Start of option value list
/
* Start of option value list */
start_option_value_list:
option_value_no_option_type
{
...
...
@@ -15024,7 +15025,7 @@ start_option_value_list:
;
/
/ Start of option value list, option_type was given
/
* Start of option value list, option_type was given */
start_option_value_list_following_option_type:
option_value_following_option_type
{
...
...
@@ -15039,13 +15040,13 @@ start_option_value_list_following_option_type:
}
;
/
/ Remainder of the option value list after first option value.
/
* Remainder of the option value list after first option value. */
option_value_list_continued:
/* empty */
| ',' option_value_list
;
/
/ Repeating list of option values after first option value.
/
* Repeating list of option values after first option value. */
option_value_list:
{
sp_create_assignment_lex(thd, yychar == YYEMPTY);
...
...
@@ -15066,7 +15067,7 @@ option_value_list:
}
;
/
/ Wrapper around option values following the first option value in the stmt.
/
* Wrapper around option values following the first option value in the stmt. */
option_value:
option_type
{
...
...
@@ -15096,7 +15097,7 @@ opt_var_ident_type:
| SESSION_SYM '.' { $$=OPT_SESSION; }
;
/
/ Option values with preceding option_type.
/
* Option values with preceding option_type. */
option_value_following_option_type:
internal_variable_name equal set_expr_or_default
{
...
...
@@ -15120,7 +15121,7 @@ option_value_following_option_type:
}
;
/
/ Option values without preceding option_type.
/
* Option values without preceding option_type. */
option_value_no_option_type:
internal_variable_name equal set_expr_or_default
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment