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
7c76ae4c
Commit
7c76ae4c
authored
Feb 03, 2006
by
svoj@april.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#16893: Crash in test 'fulltext_order_by'
Fixed that fulltext query + union results in unexpected behaviour.
parent
736faf47
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
sql/item_func.h
sql/item_func.h
+0
-3
sql/sql_base.cc
sql/sql_base.cc
+2
-0
No files found.
sql/item_func.h
View file @
7c76ae4c
...
...
@@ -1057,9 +1057,6 @@ public:
{
ft_handler
->
please
->
close_search
(
ft_handler
);
ft_handler
=
0
;
if
(
join_key
)
table
->
file
->
ft_handler
=
0
;
table
->
fulltext_searched
=
0
;
}
if
(
concat
)
{
...
...
sql/sql_base.cc
View file @
7c76ae4c
...
...
@@ -988,6 +988,8 @@ TABLE *open_table(THD *thd,const char *db,const char *table_name,
table
->
status
=
STATUS_NO_RECORD
;
table
->
keys_in_use_for_query
=
table
->
keys_in_use
;
table
->
used_keys
=
table
->
keys_for_keyread
;
table
->
file
->
ft_handler
=
0
;
table
->
fulltext_searched
=
0
;
if
(
table
->
timestamp_field
)
table
->
timestamp_field_type
=
table
->
timestamp_field
->
get_auto_set_type
();
DBUG_ASSERT
(
table
->
key_read
==
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