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
03f289db
Commit
03f289db
authored
Oct 18, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pgalbraith@bk-internal.mysql.com:/home/bk/mysql-5.0
into krsna.patg.net:/home/patg/mysql-build/mysql-5.0.test1
parents
6e0222cb
1f732c11
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
sql/ha_federated.cc
sql/ha_federated.cc
+7
-1
No files found.
sql/ha_federated.cc
View file @
03f289db
...
...
@@ -1169,6 +1169,7 @@ bool ha_federated::create_where_from_key(String *to,
switch
(
ranges
[
i
]
->
flag
)
{
case
(
HA_READ_KEY_EXACT
):
DBUG_PRINT
(
"info"
,
(
"federated HA_READ_KEY_EXACT %d"
,
i
));
if
(
store_length
>=
length
||
!
needs_quotes
||
key_part
->
type
==
HA_KEYTYPE_BIT
||
...
...
@@ -1203,6 +1204,7 @@ bool ha_federated::create_where_from_key(String *to,
}
break
;
case
(
HA_READ_AFTER_KEY
):
DBUG_PRINT
(
"info"
,
(
"federated HA_READ_AFTER_KEY %d"
,
i
));
if
(
store_length
>=
length
)
/* end key */
{
if
(
emit_key_part_name
(
&
tmp
,
key_part
))
...
...
@@ -1227,6 +1229,7 @@ bool ha_federated::create_where_from_key(String *to,
break
;
}
case
(
HA_READ_KEY_OR_NEXT
):
DBUG_PRINT
(
"info"
,
(
"federated HA_READ_KEY_OR_NEXT %d"
,
i
));
if
(
emit_key_part_name
(
&
tmp
,
key_part
)
||
tmp
.
append
(
FEDERATED_GE
)
||
emit_key_part_element
(
&
tmp
,
key_part
,
needs_quotes
,
0
,
ptr
,
...
...
@@ -1234,6 +1237,7 @@ bool ha_federated::create_where_from_key(String *to,
DBUG_RETURN
(
1
);
break
;
case
(
HA_READ_BEFORE_KEY
):
DBUG_PRINT
(
"info"
,
(
"federated HA_READ_BEFORE_KEY %d"
,
i
));
if
(
store_length
>=
length
)
{
if
(
emit_key_part_name
(
&
tmp
,
key_part
)
||
...
...
@@ -1244,6 +1248,7 @@ bool ha_federated::create_where_from_key(String *to,
break
;
}
case
(
HA_READ_KEY_OR_PREV
):
DBUG_PRINT
(
"info"
,
(
"federated HA_READ_KEY_OR_PREV %d"
,
i
));
if
(
emit_key_part_name
(
&
tmp
,
key_part
)
||
tmp
.
append
(
FEDERATED_LE
)
||
emit_key_part_element
(
&
tmp
,
key_part
,
needs_quotes
,
0
,
ptr
,
...
...
@@ -2509,11 +2514,12 @@ int ha_federated::delete_all_rows()
/*
TRUNCATE won't return anything in mysql_affected_rows
*/
deleted
+=
records
;
if
(
mysql_real_query
(
mysql
,
query
.
ptr
(),
query
.
length
()))
{
DBUG_RETURN
(
stash_remote_error
());
}
deleted
+=
records
;
records
=
0
;
DBUG_RETURN
(
0
);
}
...
...
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