Index: third_party/sqlite/src/test/instr.test |
diff --git a/third_party/sqlite/src/test/instr.test b/third_party/sqlite/src/test/instr.test |
index c8be4862b930641b2c73411467b57d97e91a4370..2caf3bce3b3042d98eec378234fc767cce3c3d6b 100644 |
--- a/third_party/sqlite/src/test/instr.test |
+++ b/third_party/sqlite/src/test/instr.test |
@@ -248,4 +248,13 @@ do_execsql_test instr-1.62 { |
SELECT coalesce(instr(NULL,NULL), 999); |
} {999} |
+do_execsql_test instr-1.63 { |
+ SELECT instr(X'', 'abc') |
+} 0 |
+do_execsql_test instr-1.64 { |
+ CREATE TABLE x1(a, b); |
+ INSERT INTO x1 VALUES(X'', 'abc'); |
+ SELECT instr(a, b) FROM x1; |
+} 0 |
+ |
finish_test |