[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.17.75.243: ~ $
# This is the basic function tests for innodb FTS

-- source include/have_innodb.inc

# Create FTS table
CREATE TABLE articles (
	id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
	title VARCHAR(200),
	body TEXT
	) ENGINE=InnoDB;

# Insert six rows
INSERT INTO articles (title,body) VALUES
	('MySQL Tutorial','DBMS stands for DataBase ...')  ,
	('How To Use MySQL Well','After you went through a ...'),
	('Optimizing MySQL','In this tutorial we will show ...'),
	('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'),
	('MySQL vs. YourSQL','In the following database comparison ...'),
	('MySQL Security','When configured properly, MySQL ...');

# Create the FTS index
CREATE FULLTEXT INDEX idx on articles (title, body);

SELECT * FROM articles WHERE MATCH (title, body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

SELECT COUNT(*) FROM articles
        WHERE MATCH (title, body)
        AGAINST ('database' IN NATURAL LANGUAGE MODE);

SELECT * FROM articles
     WHERE MATCH (title, body)
     AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);


SELECT COUNT(IF(MATCH (title, body)
        AGAINST ('database' IN NATURAL LANGUAGE MODE), 1, NULL))
        AS count FROM articles;

ANALYZE TABLE articles;

# Boolean search
# Select rows contain "MySQL" but not "YourSQL"
SELECT * FROM articles WHERE MATCH (title,body)
        AGAINST ('+MySQL -YourSQL' IN BOOLEAN MODE);

# Select rows contain at least one of the two words
SELECT * FROM articles WHERE MATCH (title,body)
        AGAINST ('DBMS Security' IN BOOLEAN MODE);

# Select rows contain both "MySQL" and "YourSQL"
SELECT * FROM articles WHERE MATCH (title,body)
        AGAINST ('+MySQL +YourSQL' IN BOOLEAN MODE);

DROP INDEX idx ON articles;

# Create the FTS index
CREATE FULLTEXT INDEX idx on articles (title, body);

CREATE FULLTEXT INDEX idx1 on articles (title);

SELECT * FROM articles WHERE MATCH (title, body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

DROP INDEX idx ON articles;

DROP INDEX idx1 ON articles;

CREATE FULLTEXT INDEX idx1 on articles (title);

SELECT * FROM articles WHERE MATCH (title)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

drop table articles;

# Create FTS table
CREATE TABLE articles (
	FTS_DOC_ID BIGINT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
	title VARCHAR(200),
	body TEXT
	) ENGINE=InnoDB;

create unique index FTS_DOC_ID_INDEX on articles(FTS_DOC_ID);

# Insert six rows
INSERT INTO articles (title,body) VALUES
	('MySQL Tutorial','DBMS stands for DataBase ...')  ,
	('How To Use MySQL Well','After you went through a ...'),
	('Optimizing MySQL','In this tutorial we will show ...'),
	('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'),
	('MySQL vs. YourSQL','In the following database comparison ...'),
	('MySQL Security','When configured properly, MySQL ...');

# Create the FTS index
CREATE FULLTEXT INDEX idx on articles (title, body);

# "the" is in the default stopword, it would not be selected
SELECT * FROM articles WHERE MATCH (title, body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

drop table articles;

# Create FTS table
CREATE TABLE articles (
	id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
	title VARCHAR(200),
	body TEXT
	) ENGINE=InnoDB;

# Insert six rows
INSERT INTO articles (title,body) VALUES
	('MySQL Tutorial','DBMS stands for DataBase ...')  ,
	('How To Use MySQL Well','After you went through a ...'),
	('Optimizing MySQL','In this tutorial we will show ...'),
	('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'),
	('MySQL vs. YourSQL','In the following database comparison ...'),
	('MySQL Security','When configured properly, MySQL ...');

CREATE FULLTEXT INDEX idx on articles (title);
CREATE FULLTEXT INDEX idx2 on articles (body);

# "the" is in the default stopword, it would not be selected
--error 1191
SELECT * FROM articles WHERE MATCH (title, body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

SELECT * FROM articles WHERE MATCH (title)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

SELECT * FROM articles WHERE MATCH (body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

drop index idx2 on articles;

--error 1191
SELECT * FROM articles WHERE MATCH (body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

CREATE FULLTEXT INDEX idx2 on articles (body);

SELECT * FROM articles WHERE MATCH (body)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

UPDATE articles set title = 'aaaa'
WHERE MATCH(title) AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

SELECT * FROM articles WHERE MATCH (title)
        AGAINST ('Tutorial' IN NATURAL LANGUAGE MODE);

SELECT * FROM articles WHERE MATCH (title)
        AGAINST ('aaaa' IN NATURAL LANGUAGE MODE);

drop table articles;

CREATE TABLE articles (
         FTS_DOC_ID BIGINT UNSIGNED NOT NULL ,
	 title VARCHAR(200),
         body TEXT
         ) ENGINE=InnoDB;

CREATE FULLTEXT INDEX idx on articles (title);

INSERT INTO articles  VALUES (9, 'MySQL Tutorial','DBMS stands for DataBase ...');

# This should fail since we did not supply a new Doc ID
-- error 182
UPDATE articles set title = 'bbbb'  WHERE MATCH(title) AGAINST ('tutorial' IN NATURAL LANGUAGE MODE);

# This should fail, since the Doc ID supplied is less than the old value 9
-- error 182
UPDATE articles set title = 'bbbb', FTS_DOC_ID=8  WHERE MATCH(title) AGAINST ('tutorial' IN NATURAL LANGUAGE MODE);

# This should be successful
UPDATE articles set title = 'bbbb', FTS_DOC_ID=10  WHERE MATCH(title) AGAINST ('tutorial' IN NATURAL LANGUAGE MODE);

# Check update to be successful
SELECT * FROM articles WHERE MATCH (title) AGAINST ('bbbb' IN NATURAL LANGUAGE MODE);

SELECT * FROM articles WHERE MATCH (title) AGAINST ('tutorial' IN NATURAL LANGUAGE MODE);

CREATE FULLTEXT INDEX idx2 ON articles (body);

SELECT * FROM articles WHERE MATCH (body) AGAINST ('database' IN NATURAL LANGUAGE MODE);

UPDATE articles set body = 'bbbb', FTS_DOC_ID=11  WHERE MATCH(body) AGAINST ('database' IN NATURAL LANGUAGE MODE);

drop table articles;

create table `articles`(`a` varchar(2) not null)engine=innodb;

# This create index should fail. FTS_DOC_ID_INDEX is reserved as a unique
# index on FTS_DOC_ID
--error ER_INNODB_FT_WRONG_DOCID_INDEX
create fulltext index `FTS_DOC_ID_INDEX` on `articles`(`a`);

create unique index `a` on `articles`(`a`);

drop table articles;

# We will check validity of FTS_DOC_ID, which must be of an UNSIGNED
# NOT NULL bigint 
CREATE TABLE wp(
   FTS_DOC_ID bigint PRIMARY KEY,
   title VARCHAR(255) NOT NULL DEFAULT '',
   text MEDIUMTEXT NOT NULL ) ENGINE=InnoDB;

INSERT INTO wp (FTS_DOC_ID, title, text) VALUES
   (1, 'MySQL Tutorial','DBMS stands for DataBase ...'),
   (2, 'How To Use MySQL Well','After you went through a ...');

--error ER_INNODB_FT_WRONG_DOCID_COLUMN
CREATE FULLTEXT INDEX idx ON wp(title, text);

DROP TABLE wp;
CREATE TABLE wp(
   FTS_DOC_ID bigint unsigned PRIMARY KEY,
   title VARCHAR(255) NOT NULL DEFAULT '',
   text MEDIUMTEXT NOT NULL ) ENGINE=InnoDB;

INSERT INTO wp (FTS_DOC_ID, title, text) VALUES
   (1, 'MySQL Tutorial','DBMS stands for DataBase ...'),
   (2, 'How To Use MySQL Well','After you went through a ...');

CREATE FULLTEXT INDEX idx ON wp(title, text);

SELECT FTS_DOC_ID, MATCH(title, text) AGAINST ('database')

FROM wp;

DROP TABLE wp;


Filemanager

Name Type Size Permission Actions
disabled.def File 404 B 0644
fts_compatibility.test File 9.74 KB 0644
fts_compatibility_win.test File 9.58 KB 0644
fulltext.test File 22.1 KB 0644
fulltext2.test File 8.27 KB 0644
fulltext3.test File 988 B 0644
fulltext_cache.test File 1.55 KB 0644
fulltext_distinct.test File 1.18 KB 0644
fulltext_left_join.test File 4.54 KB 0644
fulltext_misc.test File 7.75 KB 0644
fulltext_multi.test File 919 B 0644
fulltext_order_by.test File 5.57 KB 0644
fulltext_plugin-master.opt File 19 B 0644
fulltext_update.test File 1.02 KB 0644
fulltext_var.test File 1.36 KB 0644
innobase_drop_fts_index_table.test File 407 B 0644
innodb-fts-basic.test File 8.74 KB 0644
innodb-fts-ddl.test File 9.15 KB 0644
innodb-fts-fic.test File 7.12 KB 0644
innodb-fts-stopword.test File 30.48 KB 0644
innodb_fts_index_table.test File 3.32 KB 0644
innodb_fts_large_records.test File 12.15 KB 0644
innodb_fts_misc.test File 55.24 KB 0644
innodb_fts_misc_1.test File 33.01 KB 0644
innodb_fts_misc_debug.test File 6.81 KB 0644
innodb_fts_multiple_index.test File 6.34 KB 0644
innodb_fts_opt.test File 14.02 KB 0644
innodb_fts_plugin.test File 1.35 KB 0644
innodb_fts_proximity.test File 7.98 KB 0644
innodb_fts_result_cache_limit.test File 1.76 KB 0644
innodb_fts_savepoint.test File 9.09 KB 0644
innodb_fts_stopword_charset.test File 13.79 KB 0644
innodb_fts_transaction.test File 31.11 KB 0644
phrase.test File 1.01 KB 0644
subexpr.test File 2.09 KB 0644
sync.test File 5.33 KB 0644
sync_block.test File 3.48 KB 0644