Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: third_party/sqlite/src/test/hexlit.test

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/test/gcfault.test ('k') | third_party/sqlite/src/test/hook.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/hexlit.test
diff --git a/third_party/sqlite/src/test/hexlit.test b/third_party/sqlite/src/test/hexlit.test
index c48930b49b6d49147c102c3afbb9626a5c79b53a..2161f27a12805cc198d2cf40d79e1207099cf65a 100644
--- a/third_party/sqlite/src/test/hexlit.test
+++ b/third_party/sqlite/src/test/hexlit.test
@@ -112,6 +112,9 @@ do_catchsql_test hexlist-400 {
do_catchsql_test hexlist-401 {
SELECT DISTINCT 0x10000000000000000;
} {1 {hex literal too big: 0x10000000000000000}}
+do_catchsql_test hexlist-402 {
+ SELECT DISTINCT -0x08000000000000000;
+} {1 {hex literal too big: -0x08000000000000000}}
do_catchsql_test hexlist-410 {
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(x);
« no previous file with comments | « third_party/sqlite/src/test/gcfault.test ('k') | third_party/sqlite/src/test/hook.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698