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
77509050
Commit
77509050
authored
Jul 14, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/media/sda1/mysql/mysql-5.0-10760-new
parents
53bb8fa6
d12fd45d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
mysql-test/r/fulltext_order_by.result
mysql-test/r/fulltext_order_by.result
+1
-1
mysql-test/t/fulltext_order_by.test
mysql-test/t/fulltext_order_by.test
+2
-0
sql/sql_select.cc
sql/sql_select.cc
+1
-1
No files found.
mysql-test/r/fulltext_order_by.result
View file @
77509050
...
@@ -158,5 +158,5 @@ where
...
@@ -158,5 +158,5 @@ where
match(c.beitrag) against ('+abc' in boolean mode)
match(c.beitrag) against ('+abc' in boolean mode)
order by
order by
match(betreff) against ('+abc' in boolean mode) desc;
match(betreff) against ('+abc' in boolean mode) desc;
text id betreff
ERROR HY000: The used table type doesn't support FULLTEXT indexes
drop table t1,t2,t3;
drop table t1,t2,t3;
mysql-test/t/fulltext_order_by.test
View file @
77509050
...
@@ -117,6 +117,8 @@ where
...
@@ -117,6 +117,8 @@ where
order
by
order
by
match
(
b
.
betreff
)
against
(
'+abc'
in
boolean
mode
)
desc
;
match
(
b
.
betreff
)
against
(
'+abc'
in
boolean
mode
)
desc
;
--
todo
psergey
:
fix
--
error
1214
select
a
.
text
,
b
.
id
,
b
.
betreff
select
a
.
text
,
b
.
id
,
b
.
betreff
from
from
t2
a
inner
join
t3
b
on
a
.
id
=
b
.
forum
inner
join
t2
a
inner
join
t3
b
on
a
.
id
=
b
.
forum
inner
join
...
...
sql/sql_select.cc
View file @
77509050
...
@@ -5178,7 +5178,7 @@ static void add_not_null_conds(JOIN *join)
...
@@ -5178,7 +5178,7 @@ static void add_not_null_conds(JOIN *join)
when it is called from make_join_select after this function is
when it is called from make_join_select after this function is
called.
called.
*/
*/
if
(
notnull
->
fix_fields
(
join
->
thd
,
join
->
tables_list
,
&
notnull
))
if
(
notnull
->
fix_fields
(
join
->
thd
,
&
notnull
))
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
DBUG_EXECUTE
(
"where"
,
print_where
(
notnull
,
DBUG_EXECUTE
(
"where"
,
print_where
(
notnull
,
referred_tab
->
table
->
alias
););
referred_tab
->
table
->
alias
););
...
...
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