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
01370b46
Commit
01370b46
authored
Feb 27, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql-test/t/fulltext.test
added a test case for a coredump bug.
parent
62db48e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
mysql-test/t/fulltext.test
mysql-test/t/fulltext.test
+18
-0
No files found.
mysql-test/t/fulltext.test
View file @
01370b46
...
...
@@ -45,3 +45,21 @@ select t1.id FROM t2 as ttxt,t1 INNER JOIN t1 as ticket2 ON ticket2.id = ttxt.ti
show
keys
from
t2
;
show
create
table
t2
;
drop
table
t1
,
t2
;
# check for bug reported by Stephan Skusa
drop
table
if
exists
fulltextTEST
;
CREATE
TABLE
fulltextTEST
(
field1
varchar
(
40
)
NOT
NULL
,
field2
varchar
(
20
)
NOT
NULL
,
field3
varchar
(
40
)
NOT
NULL
,
PRIMARY
KEY
(
field1
),
FULLTEXT
idx_fulltext
(
field1
,
field2
,
field3
)
);
INSERT
INTO
fulltextTEST
VALUES
(
'test1'
,
'test1.1'
,
'test1.1.1'
);
INSERT
INTO
fulltextTEST
VALUES
(
'test2'
,
'test2.1'
,
'test2.1.1'
);
select
*
from
fulltextTEST
where
MATCH
(
field1
,
field2
,
field3
)
AGAINST
(
NULL
);
drop
table
fulltextTEST
;
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