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
85208266
Commit
85208266
authored
Nov 16, 2000
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
parents
f44cc23c
8c9b5bfd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
15 deletions
+27
-15
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
sql/item_func.cc
sql/item_func.cc
+26
-15
No files found.
BitKeeper/etc/logging_ok
View file @
85208266
monty@donna.mysql.com
serg@serg.mysql.com
sql/item_func.cc
View file @
85208266
...
...
@@ -1975,31 +1975,42 @@ bool Item_func_match::fix_index()
}
}
uint
max_cnt
=
0
,
m
ax_key
=
0
;
uint
max_cnt
=
0
,
m
keys
=
0
;
for
(
key
=
0
;
key
<
fts
;
key
++
)
{
if
(
ft_cnt
[
key
]
>
max_cnt
)
{
max_cnt
=
ft_cnt
[
key
];
max_key
=
ft_to_key
[
key
];
mkeys
=
0
;
max_cnt
=
ft_cnt
[
mkeys
]
=
ft_cnt
[
key
];
ft_to_key
[
mkeys
]
=
ft_to_key
[
key
];
continue
;
}
if
(
ft_cnt
[
key
]
==
max_cnt
)
{
mkeys
++
;
ft_cnt
[
mkeys
]
=
ft_cnt
[
key
];
ft_to_key
[
mkeys
]
=
ft_to_key
[
key
];
continue
;
}
}
// for now, partial keys won't work. SerG
if
(
max_cnt
<
fields
.
elements
||
max_cnt
<
table
->
key_info
[
max_key
].
key_parts
)
for
(
key
=
0
;
key
<=
mkeys
;
key
++
)
{
my_printf_error
(
ER_FT_MATCHING_KEY_NOT_FOUND
,
ER
(
ER_FT_MATCHING_KEY_NOT_FOUND
),
MYF
(
0
));
return
1
;
}
// for now, partial keys won't work. SerG
if
(
max_cnt
<
fields
.
elements
||
max_cnt
<
table
->
key_info
[
ft_to_key
[
key
]].
key_parts
)
continue
;
this
->
key
=
max_key
;
maybe_null
=
1
;
join_key
=
0
;
this
->
key
=
ft_to_key
[
key
]
;
maybe_null
=
1
;
join_key
=
0
;
return
0
;
return
0
;
}
my_printf_error
(
ER_FT_MATCHING_KEY_NOT_FOUND
,
ER
(
ER_FT_MATCHING_KEY_NOT_FOUND
),
MYF
(
0
));
return
1
;
}
bool
Item_func_match
::
eq
(
const
Item
*
item
)
const
...
...
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