fts5unicode4.test 709 B

1234567891011121314151617181920212223242526272829303132
  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. source [file join [file dirname [info script]] fts5_common.tcl]
  14. set testprefix fts5unicode4
  15. # If SQLITE_ENABLE_FTS5 is not defined, omit this file.
  16. ifcapable !fts5 {
  17. finish_test
  18. return
  19. }
  20. do_execsql_test 1.0 {
  21. CREATE VIRTUAL TABLE sss USING fts5(a, prefix=3);
  22. }
  23. do_execsql_test 1.1 {
  24. INSERT INTO sss VALUES('まりや');
  25. }
  26. finish_test