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
58b37627
Commit
58b37627
authored
Nov 06, 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
fddab55d
38c8be9c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Docs/manual.texi
Docs/manual.texi
+4
-0
sql/sql_parse.cc
sql/sql_parse.cc
+1
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
BitKeeper/etc/logging_ok
View file @
58b37627
sasha@mysql.sashanet.com
sasha@work.mysql.com
tim@threads.polyesthetic.msg
Docs/manual.texi
View file @
58b37627
...
...
@@ -5321,6 +5321,10 @@ Change into the top-level directory of the unpacked distribution:
shell> cd mysql-VERSION
@end example
Note that currently you must configure and build @strong{MySQL} from
this top-level directory. You can not build it in a different
directory.
@item
Configure the release and compile everything:
sql/sql_parse.cc
View file @
58b37627
...
...
@@ -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 @
58b37627
...
...
@@ -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