| OLD | NEW |
| 1 # 2007 January 17 | 1 # 2007 January 17 |
| 2 # | 2 # |
| 3 # The author disclaims copyright to this source code. | 3 # The author disclaims copyright to this source code. |
| 4 # | 4 # |
| 5 #************************************************************************* | 5 #************************************************************************* |
| 6 # This file implements regression tests for SQLite fts3 library. The | 6 # This file implements regression tests for SQLite fts3 library. The |
| 7 # focus here is testing handling of UPDATE when using UTF-16-encoded | 7 # focus here is testing handling of UPDATE when using UTF-16-encoded |
| 8 # databases. | 8 # databases. |
| 9 # | 9 # |
| 10 # $Id: fts3ai.test,v 1.1 2007/08/20 17:38:42 shess Exp $ | 10 # $Id: fts3ai.test,v 1.1 2007/08/20 17:38:42 shess Exp $ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 sqlite3_step $STMT | 83 sqlite3_step $STMT |
| 84 sqlite3_finalize $STMT | 84 sqlite3_finalize $STMT |
| 85 set sql "UPDATE t1 SET content = 'cinq' WHERE rowid = 5" | 85 set sql "UPDATE t1 SET content = 'cinq' WHERE rowid = 5" |
| 86 set STMT [sqlite3_prepare $DB $sql -1 TAIL] | 86 set STMT [sqlite3_prepare $DB $sql -1 TAIL] |
| 87 sqlite3_step $STMT | 87 sqlite3_step $STMT |
| 88 sqlite3_finalize $STMT | 88 sqlite3_finalize $STMT |
| 89 execsql {SELECT content FROM t1 WHERE rowid = 5} | 89 execsql {SELECT content FROM t1 WHERE rowid = 5} |
| 90 } {cinq} | 90 } {cinq} |
| 91 | 91 |
| 92 finish_test | 92 finish_test |
| OLD | NEW |