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

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

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/fuzzdata4.db ('k') | third_party/sqlite/src/test/hidden.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 10909e6f4c011c6c9ceb6547d3b3ada80b833b4b..c48930b49b6d49147c102c3afbb9626a5c79b53a 100644
--- a/third_party/sqlite/src/test/hexlit.test
+++ b/third_party/sqlite/src/test/hexlit.test
@@ -109,6 +109,14 @@ do_execsql_test hexlit-301 {
do_catchsql_test hexlist-400 {
SELECT 0x10000000000000000;
} {1 {hex literal too big: 0x10000000000000000}}
+do_catchsql_test hexlist-401 {
+ SELECT DISTINCT 0x10000000000000000;
+} {1 {hex literal too big: 0x10000000000000000}}
+do_catchsql_test hexlist-410 {
+ DROP TABLE IF EXISTS t1;
+ CREATE TABLE t1(x);
+ INSERT INTO t1 VALUES(1+0x10000000000000000);
+} {1 {hex literal too big: 0x10000000000000000}}
finish_test
« no previous file with comments | « third_party/sqlite/src/test/fuzzdata4.db ('k') | third_party/sqlite/src/test/hidden.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698