First public contribution.
3 # Portions Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
5 # The author disclaims copyright to this source code. In place of
6 # a legal notice, here is a blessing:
8 # May you do good and not evil.
9 # May you find forgiveness for yourself and forgive others.
10 # May you share freely, never taking more than you give.
12 #***********************************************************************
16 # Make sure IEEE floating point NaN values are handled properly.
17 # SQLite should always convert NaN into NULL.
19 # Also verify that the decimal to IEEE754 binary conversion routines
20 # correctly generate 0.0, +Inf, and -Inf as appropriate for numbers
23 # $Id: nan.test,v 1.5 2008/09/18 11:30:13 danielk1977 Exp $
26 set testdir [file dirname $argv0]
27 source $testdir/tester.tcl
31 PRAGMA auto_vacuum=OFF;
32 PRAGMA page_size=1024;
33 CREATE TABLE t1(x FLOAT);
35 set ::STMT [sqlite3_prepare db "INSERT INTO t1 VALUES(?)" -1 TAIL]
36 sqlite3_bind_double $::STMT 1 NaN
39 db eval {SELECT x, typeof(x) FROM t1}
41 if {$tcl_platform(platform) != "symbian"} {
43 sqlite3_bind_double $::STMT 1 +Inf
46 db eval {SELECT x, typeof(x) FROM t1}
49 sqlite3_bind_double $::STMT 1 -Inf
52 db eval {SELECT x, typeof(x) FROM t1}
53 } {{} null inf real -inf real}
55 sqlite3_bind_double $::STMT 1 -NaN
58 db eval {SELECT x, typeof(x) FROM t1}
59 } {{} null inf real -inf real {} null}
61 sqlite3_bind_double $::STMT 1 NaN0
64 db eval {SELECT x, typeof(x) FROM t1}
65 } {{} null inf real -inf real {} null {} null}
67 sqlite3_bind_double $::STMT 1 -NaN0
70 db eval {SELECT x, typeof(x) FROM t1}
71 } {{} null inf real -inf real {} null {} null {} null}
75 SELECT x, typeof(x) FROM t1;
77 } {{} null {} null {} null {} null {} null {} null}
80 # The following block of tests, nan-1.2.*, are the same as the nan-1.1.*
81 # tests above, except that the SELECT queries used to validate data
82 # convert floating point values to text internally before returning them
83 # to Tcl. This allows the tests to be run on platforms where Tcl has
84 # problems converting "inf" and "-inf" from floating point to text format.
85 # It also tests the internal float->text conversion routines a bit.
91 sqlite3_bind_double $::STMT 1 NaN
94 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
97 sqlite3_bind_double $::STMT 1 +Inf
100 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
103 sqlite3_bind_double $::STMT 1 -Inf
105 sqlite3_reset $::STMT
106 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
107 } {{} null Inf real -Inf real}
109 sqlite3_bind_double $::STMT 1 -NaN
111 sqlite3_reset $::STMT
112 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
113 } {{} null Inf real -Inf real {} null}
115 sqlite3_bind_double $::STMT 1 NaN0
117 sqlite3_reset $::STMT
118 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
119 } {{} null Inf real -Inf real {} null {} null}
121 sqlite3_bind_double $::STMT 1 -NaN0
123 sqlite3_reset $::STMT
124 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
125 } {{} null Inf real -Inf real {} null {} null {} null}
129 SELECT CAST(x AS text), typeof(x) FROM t1;
131 } {{} null {} null {} null {} null {} null {} null}
137 sqlite3_bind_double $::STMT 1 NaN
139 sqlite3_reset $::STMT
140 db eval {SELECT x, typeof(x) FROM t1}
142 sqlite3_finalize $::STMT
144 # SQLite always converts NaN into NULL so it is not possible to write
145 # a NaN value into the database file using SQLite. The following series
146 # of tests writes a normal floating point value (0.5) into the database,
147 # then writes directly into the database file to change the 0.5 into NaN.
148 # Then it reads the value of the database to verify it is converted into
154 INSERT INTO t1 VALUES(0.5);
155 PRAGMA auto_vacuum=OFF;
156 PRAGMA page_size=1024;
159 hexio_read test.db 2040 8
163 SELECT x, typeof(x) FROM t1
168 hexio_write test.db 2040 FFF8000000000000
170 db eval {SELECT x, typeof(x) FROM t1}
174 hexio_write test.db 2040 7FF8000000000000
176 db eval {SELECT x, typeof(x) FROM t1}
180 hexio_write test.db 2040 FFFFFFFFFFFFFFFF
182 db eval {SELECT x, typeof(x) FROM t1}
186 hexio_write test.db 2040 7FFFFFFFFFFFFFFF
188 db eval {SELECT x, typeof(x) FROM t1}
191 # Verify that the sqlite3AtoF routine is able to handle extreme
195 db eval {DELETE FROM t1}
196 db eval "INSERT INTO t1 VALUES([string repeat 9 307].0)"
197 db eval {SELECT x, typeof(x) FROM t1}
200 db eval {DELETE FROM t1}
201 db eval "INSERT INTO t1 VALUES([string repeat 9 308].0)"
202 db eval {SELECT x, typeof(x) FROM t1}
205 db eval {DELETE FROM t1}
206 db eval "INSERT INTO t1 VALUES(-[string repeat 9 307].0)"
207 db eval {SELECT x, typeof(x) FROM t1}
210 db eval {DELETE FROM t1}
211 db eval "INSERT INTO t1 VALUES(-[string repeat 9 308].0)"
212 db eval {SELECT x, typeof(x) FROM t1}
215 db eval {DELETE FROM t1}
216 set big -[string repeat 0 10000][string repeat 9 308].[string repeat 0 10000]
217 db eval "INSERT INTO t1 VALUES($big)"
218 db eval {SELECT x, typeof(x) FROM t1}
221 db eval {DELETE FROM t1}
222 set big [string repeat 0 10000][string repeat 9 308].[string repeat 0 10000]
223 db eval "INSERT INTO t1 VALUES($big)"
224 db eval {SELECT x, typeof(x) FROM t1}
227 if {$tcl_platform(platform) != "symbian"} {
228 # Do not run these tests on Symbian, as the Tcl port doesn't like to
229 # convert from floating point value "-inf" to a string.
232 db eval {DELETE FROM t1}
233 db eval "INSERT INTO t1 VALUES([string repeat 9 309].0)"
234 db eval {SELECT x, typeof(x) FROM t1}
237 db eval {DELETE FROM t1}
238 db eval "INSERT INTO t1 VALUES(-[string repeat 9 309].0)"
239 db eval {SELECT x, typeof(x) FROM t1}
243 db eval {DELETE FROM t1}
244 db eval "INSERT INTO t1 VALUES([string repeat 9 309].0)"
245 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
248 db eval {DELETE FROM t1}
249 db eval "INSERT INTO t1 VALUES(-[string repeat 9 309].0)"
250 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
254 db eval {DELETE FROM t1}
255 db eval "INSERT INTO t1 VALUES(1234.5[string repeat 0 10000]12345)"
256 db eval {SELECT x, typeof(x) FROM t1}
259 db eval {DELETE FROM t1}
260 db eval "INSERT INTO t1 VALUES(-1234.5[string repeat 0 10000]12345)"
261 db eval {SELECT x, typeof(x) FROM t1}
264 db eval {DELETE FROM t1}
265 set small [string repeat 0 10000].[string repeat 0 324][string repeat 9 10000]
266 db eval "INSERT INTO t1 VALUES($small)"
267 db eval {SELECT x, typeof(x) FROM t1}
270 db eval {DELETE FROM t1}
272 -[string repeat 0 10000].[string repeat 0 324][string repeat 9 10000]
273 db eval "INSERT INTO t1 VALUES($small)"
274 db eval {SELECT x, typeof(x) FROM t1}
277 # These tests test some really, really small floating point numbers.
279 if {$tcl_platform(platform) != "symbian"} {
280 # These two are not run on symbian because tcl has trouble converting
281 # the very small numbers back to text form (probably due to a difference
282 # in the sprintf() implementation).
285 db eval {DELETE FROM t1}
287 [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
288 db eval "INSERT INTO t1 VALUES($small)"
289 db eval {SELECT x, typeof(x) FROM t1}
290 } {9.88131291682493e-324 real}
292 db eval {DELETE FROM t1}
294 -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
295 db eval "INSERT INTO t1 VALUES($small)"
296 db eval {SELECT x, typeof(x) FROM t1}
297 } {-9.88131291682493e-324 real}
300 # Symbian OS: the next test fails due to problems in sprintf/printf formatting.
301 if {$::tcl_platform(platform)!="symbian"} {
303 db eval {DELETE FROM t1}
304 set small [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
305 db eval "INSERT INTO t1 VALUES($small)"
306 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
307 } {9.88131291682493e-324 real}
310 # Symbian OS: the next test fails due to problems in sprintf/printf formatting.
311 if {$::tcl_platform(platform)!="symbian"} {
313 db eval {DELETE FROM t1}
315 -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
316 db eval "INSERT INTO t1 VALUES($small)"
317 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
318 } {-9.88131291682493e-324 real}
321 db eval {DELETE FROM t1}
322 set big [string repeat 9 10000].0e-9000
323 db eval "INSERT INTO t1 VALUES($big)"
324 db eval {SELECT x, typeof(x) FROM t1}