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
1cbef43d
Commit
1cbef43d
authored
Feb 18, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
parents
ff79e830
279da42b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
mysql-test/r/rpl_multi_query.result
mysql-test/r/rpl_multi_query.result
+1
-1
mysql-test/t/rpl_multi_query.test
mysql-test/t/rpl_multi_query.test
+1
-1
sql/ha_federated.h
sql/ha_federated.h
+1
-1
sql/sql_parse.cc
sql/sql_parse.cc
+2
-2
No files found.
mysql-test/r/rpl_multi_query.result
View file @
1cbef43d
...
...
@@ -19,7 +19,7 @@ n
3
4
5
show binlog events from 9
5
;
show binlog events from 9
6
;
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Query 1 # drop database if exists mysqltest
master-bin.000001 # Query 1 # create database mysqltest
...
...
mysql-test/t/rpl_multi_query.test
View file @
1cbef43d
...
...
@@ -24,6 +24,6 @@ sync_slave_with_master;
select
*
from
mysqltest
.
t1
;
connection
master
;
--
replace_column
2
# 5 #
show
binlog
events
from
9
5
;
show
binlog
events
from
9
6
;
drop
database
mysqltest
;
sync_slave_with_master
;
sql/ha_federated.h
View file @
1cbef43d
...
...
@@ -72,7 +72,7 @@ class ha_federated: public handler
return errorcode otherwise
*/
uint
convert_row_to_internal_format
(
byte
*
buf
,
MYSQL_ROW
row
);
bool
ha_federated
::
create_where_from_key
(
String
*
to
,
KEY
*
key_info
,
const
byte
*
key
,
uint
key_length
);
bool
create_where_from_key
(
String
*
to
,
KEY
*
key_info
,
const
byte
*
key
,
uint
key_length
);
public:
ha_federated
(
TABLE
*
table
)
:
handler
(
table
),
...
...
sql/sql_parse.cc
View file @
1cbef43d
...
...
@@ -5151,8 +5151,8 @@ void mysql_parse(THD *thd, char *inBuf, uint length)
PROCESSLIST.
Note that we don't need LOCK_thread_count to modify query_length.
*/
if
(
lex
->
found_colon
&&
(
thd
->
query_length
=
(
ulong
)(
lex
->
found_colon
-
thd
->
query
)))
if
(
lex
->
found_
semi
colon
&&
(
thd
->
query_length
=
(
ulong
)(
lex
->
found_
semi
colon
-
thd
->
query
)))
thd
->
query_length
--
;
/* Actually execute the query */
mysql_execute_command
(
thd
);
...
...
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