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
5d9d6493
Commit
5d9d6493
authored
Jan 23, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fix.
parent
8dc8acbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
mysql-test/t/fulltext_left_join.test
mysql-test/t/fulltext_left_join.test
+0
-13
No files found.
mysql-test/t/fulltext_left_join.test
View file @
5d9d6493
...
...
@@ -58,19 +58,6 @@ insert into t2 values (1, 'bword'), (3, 'aword'), (5, '');
select
*
from
t1
left
join
t2
on
m_id
=
id
where
match
(
d
,
e
,
f
)
against
(
'+aword +bword'
in
boolean
mode
);
drop
table
t1
,
t2
;
#
# BUG#14708
# Inconsistent treatment of NULLs in LEFT JOINed FULLTEXT matching without index
#
create
table
t1
(
id
int
not
null
primary
key
,
d
char
(
200
)
not
null
,
e
char
(
200
));
insert
into
t1
values
(
1
,
'aword'
,
null
),
(
2
,
'aword'
,
'bword'
),
(
3
,
'bword'
,
null
),
(
4
,
'bword'
,
'aword'
),
(
5
,
'aword and bword'
,
null
);
select
*
from
t1
where
match
(
d
,
e
)
against
(
'+aword +bword'
in
boolean
mode
);
create
table
t2
(
m_id
int
not
null
,
f
char
(
200
),
key
(
m_id
));
insert
into
t2
values
(
1
,
'bword'
),
(
3
,
'aword'
),
(
5
,
''
);
select
*
from
t1
left
join
t2
on
m_id
=
id
where
match
(
d
,
e
,
f
)
against
(
'+aword +bword'
in
boolean
mode
);
drop
table
t1
,
t2
;
#
# BUG#25637: LEFT JOIN with BOOLEAN FULLTEXT loses left table matches
# (this is actually the same bug as bug #14708)
...
...
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