Index: third_party/sqlite/src/test/attach3.test |
diff --git a/third_party/sqlite/src/test/attach3.test b/third_party/sqlite/src/test/attach3.test |
index 1ac10d97a49a691bb8572ae6f51b3ad052accef4..1c8601c7b35472b8139a5a1d0b1d8d7848f94ebe 100644 |
--- a/third_party/sqlite/src/test/attach3.test |
+++ b/third_party/sqlite/src/test/attach3.test |
@@ -207,7 +207,7 @@ ifcapable tempdb { |
CREATE TEMP TRIGGER tst_trigger BEFORE INSERT ON aux.t4 BEGIN |
SELECT 'hello world'; |
END; |
- SELECT count(*) FROM sqlite_temp_master; |
+ SELECT count(*) FROM temp.sqlite_master; |
} |
} {1} |
do_test attach3-9.1 { |
@@ -219,7 +219,7 @@ ifcapable tempdb { |
do_test attach3-9.2 { |
execsql { |
DROP TABLE aux.t4; |
- SELECT count(*) FROM sqlite_temp_master; |
+ SELECT count(*) FROM temp.sqlite_master; |
} |
} {0} |
} |