1# 2018 July 25 2# 3# The author disclaims copyright to this source code. In place of 4# a legal notice, here is a blessing: 5# 6# May you do good and not evil. 7# May you find forgiveness for yourself and forgive others. 8# May you share freely, never taking more than you give. 9# 10#*********************************************************************** 11# 12# 13 14source [file join [file dirname [info script]] fts5_common.tcl] 15set testprefix fts5unicode4 16 17# If SQLITE_ENABLE_FTS5 is defined, omit this file. 18ifcapable !fts5 { 19 finish_test 20 return 21} 22 23do_execsql_test 1.0 { 24 CREATE VIRTUAL TABLE sss USING fts5(a, prefix=3); 25} 26 27do_execsql_test 1.1 { 28 INSERT INTO sss VALUES('まりや'); 29} 30 31finish_test 32