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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
91bf188b
Commit
91bf188b
authored
Oct 30, 2000
by
tim@threads.polyesthetic.msg
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql
into threads.polyesthetic.msg:/usr/local/src/my/work
parents
a896b872
eb680470
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
sql/sql_parse.cc
sql/sql_parse.cc
+1
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
sql/sql_parse.cc
View file @
91bf188b
...
...
@@ -1716,6 +1716,7 @@ mysql_execute_command(void)
case
SQLCOM_BEGIN
:
thd
->
options
|=
OPTION_BEGIN
;
thd
->
server_status
|=
SERVER_STATUS_IN_TRANS
;
send_ok
(
&
thd
->
net
);
break
;
case
SQLCOM_COMMIT
:
thd
->
options
&=
~
OPTION_BEGIN
;
...
...
sql/sql_yacc.yy
View file @
91bf188b
...
...
@@ -2851,7 +2851,7 @@ grant_option:
| WITH GRANT OPTION { Lex->grant |= GRANT_ACL;}
begin:
BEGIN_SYM { Lex->sql_command = SQLCOM_
COMMIT
;} opt_work
BEGIN_SYM { Lex->sql_command = SQLCOM_
BEGIN
;} opt_work
opt_work:
/* empty */ {}
...
...
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