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
75495093
Commit
75495093
authored
Feb 14, 2008
by
svoj@mysql.com/april.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fix.
parent
2ab1b840
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+3
-3
No files found.
storage/federated/ha_federated.cc
View file @
75495093
...
...
@@ -1298,9 +1298,9 @@ bool ha_federated::create_where_from_key(String *to,
"IS NULL", flag is set to HA_READ_KEY_EXACT.
*/
if
(
emit_key_part_name
(
&
tmp
,
key_part
)
||
tmp
.
append
(
ranges
[
i
]
->
flag
==
HA_READ_KEY_EXACT
?
STRING_WITH_LEN
(
" IS NULL "
)
:
STRING_WITH_LEN
(
" IS NOT NULL "
)))
(
ranges
[
i
]
->
flag
==
HA_READ_KEY_EXACT
?
tmp
.
append
(
STRING_WITH_LEN
(
" IS NULL "
)
)
:
tmp
.
append
(
STRING_WITH_LEN
(
" IS NOT NULL "
)
)))
goto
err
;
/*
We need to adjust pointer and length to be prepared for next
...
...
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