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
3b2e1fd2
Commit
3b2e1fd2
authored
Mar 15, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Making full-text queries working with UNION's
parent
606e3e95
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
7 deletions
+18
-7
mysql-test/r/fulltext.result
mysql-test/r/fulltext.result
+5
-0
mysql-test/t/fulltext.test
mysql-test/t/fulltext.test
+4
-0
sql/sql_base.cc
sql/sql_base.cc
+4
-4
sql/sql_select.cc
sql/sql_select.cc
+3
-2
sql/sql_union.cc
sql/sql_union.cc
+2
-1
No files found.
mysql-test/r/fulltext.result
View file @
3b2e1fd2
...
...
@@ -16,6 +16,11 @@ select * from t1 where MATCH(a,b) AGAINST ("indexes collections");
a b
Full-text indexes are called collections
Only MyISAM tables support collections
select * from t1 where MATCH(a,b) AGAINST ("collections") UNION ALL select * from t1 where MATCH(a,b) AGAINST ("indexes");
a b
Only MyISAM tables support collections
Full-text indexes are called collections
Full-text indexes are called collections
select * from t1 where MATCH(a,b) AGAINST("support -collections" IN BOOLEAN MODE);
a b
MySQL has now support for full-text search
...
...
mysql-test/t/fulltext.test
View file @
3b2e1fd2
...
...
@@ -17,6 +17,10 @@ select * from t1 where MATCH(a,b) AGAINST ("collections");
select
*
from
t1
where
MATCH
(
a
,
b
)
AGAINST
(
"indexes"
);
select
*
from
t1
where
MATCH
(
a
,
b
)
AGAINST
(
"indexes collections"
);
# UNION of fulltext's
select
*
from
t1
where
MATCH
(
a
,
b
)
AGAINST
(
"collections"
)
UNION
ALL
select
*
from
t1
where
MATCH
(
a
,
b
)
AGAINST
(
"indexes"
);
# boolean search
select
*
from
t1
where
MATCH
(
a
,
b
)
AGAINST
(
"support -collections"
IN
BOOLEAN
MODE
);
...
...
sql/sql_base.cc
View file @
3b2e1fd2
...
...
@@ -2175,8 +2175,8 @@ bool remove_table_from_cache(THD *thd, const char *db, const char *table_name,
int
setup_ftfuncs
(
THD
*
thd
)
{
List_iterator
<
Item_func_match
>
li
(
thd
->
lex
.
select
_lex
.
ftfunc_list
),
lj
(
thd
->
lex
.
select
_lex
.
ftfunc_list
);
List_iterator
<
Item_func_match
>
li
(
thd
->
lex
.
select
->
ftfunc_list
),
lj
(
thd
->
lex
.
select
->
ftfunc_list
);
Item_func_match
*
ftf
,
*
ftf2
;
while
((
ftf
=
li
++
))
...
...
@@ -2196,9 +2196,9 @@ int setup_ftfuncs(THD *thd)
int
init_ftfuncs
(
THD
*
thd
,
bool
no_order
)
{
if
(
thd
->
lex
.
select
_lex
.
ftfunc_list
.
elements
)
if
(
thd
->
lex
.
select
->
ftfunc_list
.
elements
)
{
List_iterator
<
Item_func_match
>
li
(
thd
->
lex
.
select
_lex
.
ftfunc_list
);
List_iterator
<
Item_func_match
>
li
(
thd
->
lex
.
select
->
ftfunc_list
);
Item_func_match
*
ifm
;
DBUG_PRINT
(
"info"
,(
"Performing FULLTEXT search"
));
thd
->
proc_info
=
"FULLTEXT initialization"
;
...
...
sql/sql_select.cc
View file @
3b2e1fd2
...
...
@@ -196,6 +196,7 @@ mysql_select(THD *thd,TABLE_LIST *tables,List<Item> &fields,COND *conds,
List
<
Item
>
all_fields
(
fields
);
bool
select_distinct
;
SELECT_LEX
*
select_lex
=
&
(
thd
->
lex
.
select_lex
);
SELECT_LEX
*
cur_sel
=
thd
->
lex
.
select
;
DBUG_ENTER
(
"mysql_select"
);
/* Check that all tables, fields, conds and order are ok */
...
...
@@ -553,7 +554,7 @@ mysql_select(THD *thd,TABLE_LIST *tables,List<Item> &fields,COND *conds,
make_join_readinfo
(
&
join
,
(
select_options
&
(
SELECT_DESCRIBE
|
SELECT_NO_JOIN_CACHE
))
|
(
select_lex
->
ftfunc_list
.
elements
?
SELECT_NO_JOIN_CACHE
:
0
));
(
cur_sel
->
ftfunc_list
.
elements
?
SELECT_NO_JOIN_CACHE
:
0
));
/* Need to tell Innobase that to play it safe, it should fetch all
columns of the tables: this is because MySQL
...
...
@@ -1615,7 +1616,7 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab,
add_key_part
(
keyuse
,
field
);
}
if
(
thd
->
lex
.
select
_lex
.
ftfunc_list
.
elements
)
if
(
thd
->
lex
.
select
->
ftfunc_list
.
elements
)
{
add_ft_keys
(
keyuse
,
join_tab
,
cond
,
normal_tables
);
}
...
...
sql/sql_union.cc
View file @
3b2e1fd2
...
...
@@ -126,7 +126,7 @@ int mysql_union(THD *thd, LEX *lex,select_result *result)
}
union_result
->
save_time_stamp
=!
describe
;
for
(
sl
=
&
lex
->
select_lex
;
sl
;
sl
=
sl
->
next
)
for
(
sl
=
lex
->
select
=&
lex
->
select_lex
;
sl
;
sl
=
lex
->
select
=
sl
->
next
)
{
thd
->
offset_limit
=
sl
->
offset_limit
;
thd
->
select_limit
=
sl
->
select_limit
+
sl
->
offset_limit
;
...
...
@@ -155,6 +155,7 @@ int mysql_union(THD *thd, LEX *lex,select_result *result)
delete
union_result
;
/* Send result to 'result' */
lex
->
select
=
&
lex
->
select_lex
;
res
=-
1
;
{
/* Create a list of fields in the temporary table */
...
...
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