diff options
Diffstat (limited to 'test/expr.test')
-rw-r--r-- | test/expr.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/expr.test b/test/expr.test index 7137a1ae6..66fba6041 100644 --- a/test/expr.test +++ b/test/expr.test @@ -11,7 +11,7 @@ # This file implements regression tests for SQLite library. The # focus of this file is testing expressions. # -# $Id: expr.test,v 1.52 2006/09/01 15:49:06 drh Exp $ +# $Id: expr.test,v 1.53 2007/04/06 02:32:35 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -637,6 +637,9 @@ do_test expr-11.1 { do_test expr-11.2 { execsql {SELECT typeof(9223372036854775808)} } {real} +do_test expr-11.3 { + execsql {SELECT typeof(92233720368547758070)} +} {real} # These two statements used to leak memory (because of missing %destructor # directives in parse.y). |