blob: df3f65b8e6229bcbe7744949ac34ef4f5df4c3a4 [file] [log] [blame]
drh2eaf93d2008-04-29 00:15:20 +00001# 2008 April 28
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11#
12# Ticket #3060
13#
14# Make sure IEEE floating point NaN values are handled properly.
15# SQLite should always convert NaN into NULL.
16#
drha06f17f2008-05-11 11:07:06 +000017# Also verify that the decimal to IEEE754 binary conversion routines
18# correctly generate 0.0, +Inf, and -Inf as appropriate for numbers
19# out of range.
20#
danielk1977b11bcfd2008-09-18 11:30:12 +000021# $Id: nan.test,v 1.5 2008/09/18 11:30:13 danielk1977 Exp $
drh2eaf93d2008-04-29 00:15:20 +000022#
23
24set testdir [file dirname $argv0]
25source $testdir/tester.tcl
26
dan68928b62010-06-22 13:46:43 +000027# Do not use a codec for tests in this file, as the database file is
28# manipulated directly using tcl scripts (using the [hexio_write] command).
29#
30do_not_use_codec
31
danielk197789bae3e2008-09-17 16:14:10 +000032do_test nan-1.1.1 {
drh2eaf93d2008-04-29 00:15:20 +000033 db eval {
drhb7d63622008-05-01 18:01:46 +000034 PRAGMA auto_vacuum=OFF;
35 PRAGMA page_size=1024;
drh2eaf93d2008-04-29 00:15:20 +000036 CREATE TABLE t1(x FLOAT);
37 }
drha06f17f2008-05-11 11:07:06 +000038 set ::STMT [sqlite3_prepare db "INSERT INTO t1 VALUES(?)" -1 TAIL]
39 sqlite3_bind_double $::STMT 1 NaN
40 sqlite3_step $::STMT
41 sqlite3_reset $::STMT
drh2eaf93d2008-04-29 00:15:20 +000042 db eval {SELECT x, typeof(x) FROM t1}
43} {{} null}
danielk197789bae3e2008-09-17 16:14:10 +000044if {$tcl_platform(platform) != "symbian"} {
dan33f53792011-05-05 19:44:22 +000045 do_realnum_test nan-1.1.2 {
danielk197789bae3e2008-09-17 16:14:10 +000046 sqlite3_bind_double $::STMT 1 +Inf
47 sqlite3_step $::STMT
48 sqlite3_reset $::STMT
49 db eval {SELECT x, typeof(x) FROM t1}
50 } {{} null inf real}
dan33f53792011-05-05 19:44:22 +000051 do_realnum_test nan-1.1.3 {
danielk197789bae3e2008-09-17 16:14:10 +000052 sqlite3_bind_double $::STMT 1 -Inf
53 sqlite3_step $::STMT
54 sqlite3_reset $::STMT
55 db eval {SELECT x, typeof(x) FROM t1}
56 } {{} null inf real -inf real}
dan33f53792011-05-05 19:44:22 +000057 do_realnum_test nan-1.1.4 {
danielk197789bae3e2008-09-17 16:14:10 +000058 sqlite3_bind_double $::STMT 1 -NaN
59 sqlite3_step $::STMT
60 sqlite3_reset $::STMT
61 db eval {SELECT x, typeof(x) FROM t1}
62 } {{} null inf real -inf real {} null}
dan33f53792011-05-05 19:44:22 +000063 do_realnum_test nan-1.1.5 {
danielk197789bae3e2008-09-17 16:14:10 +000064 sqlite3_bind_double $::STMT 1 NaN0
65 sqlite3_step $::STMT
66 sqlite3_reset $::STMT
67 db eval {SELECT x, typeof(x) FROM t1}
68 } {{} null inf real -inf real {} null {} null}
dan33f53792011-05-05 19:44:22 +000069 do_realnum_test nan-1.1.6 {
danielk197789bae3e2008-09-17 16:14:10 +000070 sqlite3_bind_double $::STMT 1 -NaN0
71 sqlite3_step $::STMT
72 sqlite3_reset $::STMT
73 db eval {SELECT x, typeof(x) FROM t1}
74 } {{} null inf real -inf real {} null {} null {} null}
shaneh100efa32010-07-07 16:20:38 +000075 do_test nan-1.1.7 {
danielk197789bae3e2008-09-17 16:14:10 +000076 db eval {
77 UPDATE t1 SET x=x-x;
78 SELECT x, typeof(x) FROM t1;
79 }
80 } {{} null {} null {} null {} null {} null {} null}
81}
82
83# The following block of tests, nan-1.2.*, are the same as the nan-1.1.*
84# tests above, except that the SELECT queries used to validate data
85# convert floating point values to text internally before returning them
86# to Tcl. This allows the tests to be run on platforms where Tcl has
87# problems converting "inf" and "-inf" from floating point to text format.
88# It also tests the internal float->text conversion routines a bit.
89#
90do_test nan-1.2.1 {
91 db eval {
92 DELETE FROM T1;
93 }
94 sqlite3_bind_double $::STMT 1 NaN
95 sqlite3_step $::STMT
96 sqlite3_reset $::STMT
97 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
98} {{} null}
99do_test nan-1.2.2 {
drha06f17f2008-05-11 11:07:06 +0000100 sqlite3_bind_double $::STMT 1 +Inf
101 sqlite3_step $::STMT
102 sqlite3_reset $::STMT
danielk197789bae3e2008-09-17 16:14:10 +0000103 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
104} {{} null Inf real}
105do_test nan-1.2.3 {
drha06f17f2008-05-11 11:07:06 +0000106 sqlite3_bind_double $::STMT 1 -Inf
107 sqlite3_step $::STMT
108 sqlite3_reset $::STMT
danielk197789bae3e2008-09-17 16:14:10 +0000109 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
110} {{} null Inf real -Inf real}
111do_test nan-1.2.4 {
drha06f17f2008-05-11 11:07:06 +0000112 sqlite3_bind_double $::STMT 1 -NaN
113 sqlite3_step $::STMT
114 sqlite3_reset $::STMT
danielk197789bae3e2008-09-17 16:14:10 +0000115 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
116} {{} null Inf real -Inf real {} null}
117do_test nan-1.2.5 {
drha06f17f2008-05-11 11:07:06 +0000118 sqlite3_bind_double $::STMT 1 NaN0
119 sqlite3_step $::STMT
120 sqlite3_reset $::STMT
danielk197789bae3e2008-09-17 16:14:10 +0000121 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
122} {{} null Inf real -Inf real {} null {} null}
shaneh100efa32010-07-07 16:20:38 +0000123do_test nan-1.2.6 {
drha06f17f2008-05-11 11:07:06 +0000124 sqlite3_bind_double $::STMT 1 -NaN0
125 sqlite3_step $::STMT
126 sqlite3_reset $::STMT
danielk197789bae3e2008-09-17 16:14:10 +0000127 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
128} {{} null Inf real -Inf real {} null {} null {} null}
shaneh100efa32010-07-07 16:20:38 +0000129do_test nan-1.2.7 {
drh2eaf93d2008-04-29 00:15:20 +0000130 db eval {
131 UPDATE t1 SET x=x-x;
danielk197789bae3e2008-09-17 16:14:10 +0000132 SELECT CAST(x AS text), typeof(x) FROM t1;
drh2eaf93d2008-04-29 00:15:20 +0000133 }
drha06f17f2008-05-11 11:07:06 +0000134} {{} null {} null {} null {} null {} null {} null}
drh2eaf93d2008-04-29 00:15:20 +0000135
136do_test nan-2.1 {
137 db eval {
138 DELETE FROM T1;
139 }
drha06f17f2008-05-11 11:07:06 +0000140 sqlite3_bind_double $::STMT 1 NaN
141 sqlite3_step $::STMT
142 sqlite3_reset $::STMT
drh2eaf93d2008-04-29 00:15:20 +0000143 db eval {SELECT x, typeof(x) FROM t1}
144} {{} null}
drha06f17f2008-05-11 11:07:06 +0000145sqlite3_finalize $::STMT
drh2eaf93d2008-04-29 00:15:20 +0000146
147# SQLite always converts NaN into NULL so it is not possible to write
148# a NaN value into the database file using SQLite. The following series
149# of tests writes a normal floating point value (0.5) into the database,
150# then writes directly into the database file to change the 0.5 into NaN.
151# Then it reads the value of the database to verify it is converted into
152# NULL.
153#
154do_test nan-3.1 {
155 db eval {
156 DELETE FROM t1;
157 INSERT INTO t1 VALUES(0.5);
158 PRAGMA auto_vacuum=OFF;
159 PRAGMA page_size=1024;
160 VACUUM;
161 }
162 hexio_read test.db 2040 8
163} {3FE0000000000000}
164do_test nan-3.2 {
165 db eval {
166 SELECT x, typeof(x) FROM t1
167 }
168} {0.5 real}
169do_test nan-3.3 {
170 db close
171 hexio_write test.db 2040 FFF8000000000000
172 sqlite3 db test.db
173 db eval {SELECT x, typeof(x) FROM t1}
174} {{} null}
drha06f17f2008-05-11 11:07:06 +0000175do_test nan-3.4 {
176 db close
177 hexio_write test.db 2040 7FF8000000000000
178 sqlite3 db test.db
179 db eval {SELECT x, typeof(x) FROM t1}
180} {{} null}
181do_test nan-3.5 {
182 db close
183 hexio_write test.db 2040 FFFFFFFFFFFFFFFF
184 sqlite3 db test.db
185 db eval {SELECT x, typeof(x) FROM t1}
186} {{} null}
187do_test nan-3.6 {
188 db close
189 hexio_write test.db 2040 7FFFFFFFFFFFFFFF
190 sqlite3 db test.db
191 db eval {SELECT x, typeof(x) FROM t1}
192} {{} null}
193
194# Verify that the sqlite3AtoF routine is able to handle extreme
195# numbers.
196#
197do_test nan-4.1 {
198 db eval {DELETE FROM t1}
199 db eval "INSERT INTO t1 VALUES([string repeat 9 307].0)"
200 db eval {SELECT x, typeof(x) FROM t1}
201} {1e+307 real}
202do_test nan-4.2 {
203 db eval {DELETE FROM t1}
204 db eval "INSERT INTO t1 VALUES([string repeat 9 308].0)"
205 db eval {SELECT x, typeof(x) FROM t1}
206} {1e+308 real}
207do_test nan-4.3 {
208 db eval {DELETE FROM t1}
drha06f17f2008-05-11 11:07:06 +0000209 db eval "INSERT INTO t1 VALUES(-[string repeat 9 307].0)"
210 db eval {SELECT x, typeof(x) FROM t1}
211} {-1e+307 real}
danielk197789bae3e2008-09-17 16:14:10 +0000212do_test nan-4.4 {
drha06f17f2008-05-11 11:07:06 +0000213 db eval {DELETE FROM t1}
214 db eval "INSERT INTO t1 VALUES(-[string repeat 9 308].0)"
215 db eval {SELECT x, typeof(x) FROM t1}
216} {-1e+308 real}
danielk197789bae3e2008-09-17 16:14:10 +0000217do_test nan-4.5 {
drha06f17f2008-05-11 11:07:06 +0000218 db eval {DELETE FROM t1}
219 set big -[string repeat 0 10000][string repeat 9 308].[string repeat 0 10000]
220 db eval "INSERT INTO t1 VALUES($big)"
221 db eval {SELECT x, typeof(x) FROM t1}
222} {-1e+308 real}
danielk197789bae3e2008-09-17 16:14:10 +0000223do_test nan-4.6 {
drha06f17f2008-05-11 11:07:06 +0000224 db eval {DELETE FROM t1}
225 set big [string repeat 0 10000][string repeat 9 308].[string repeat 0 10000]
226 db eval "INSERT INTO t1 VALUES($big)"
227 db eval {SELECT x, typeof(x) FROM t1}
228} {1e+308 real}
229
danielk197789bae3e2008-09-17 16:14:10 +0000230if {$tcl_platform(platform) != "symbian"} {
231 # Do not run these tests on Symbian, as the Tcl port doesn't like to
232 # convert from floating point value "-inf" to a string.
233 #
dan33f53792011-05-05 19:44:22 +0000234 do_realnum_test nan-4.7 {
danielk197789bae3e2008-09-17 16:14:10 +0000235 db eval {DELETE FROM t1}
236 db eval "INSERT INTO t1 VALUES([string repeat 9 309].0)"
237 db eval {SELECT x, typeof(x) FROM t1}
238 } {inf real}
dan33f53792011-05-05 19:44:22 +0000239 do_realnum_test nan-4.8 {
danielk197789bae3e2008-09-17 16:14:10 +0000240 db eval {DELETE FROM t1}
241 db eval "INSERT INTO t1 VALUES(-[string repeat 9 309].0)"
242 db eval {SELECT x, typeof(x) FROM t1}
243 } {-inf real}
244}
245do_test nan-4.9 {
246 db eval {DELETE FROM t1}
247 db eval "INSERT INTO t1 VALUES([string repeat 9 309].0)"
248 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
249} {Inf real}
250do_test nan-4.10 {
251 db eval {DELETE FROM t1}
252 db eval "INSERT INTO t1 VALUES(-[string repeat 9 309].0)"
253 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
254} {-Inf real}
drha06f17f2008-05-11 11:07:06 +0000255
shaneh100efa32010-07-07 16:20:38 +0000256do_test nan-4.11 {
drha06f17f2008-05-11 11:07:06 +0000257 db eval {DELETE FROM t1}
258 db eval "INSERT INTO t1 VALUES(1234.5[string repeat 0 10000]12345)"
259 db eval {SELECT x, typeof(x) FROM t1}
260} {1234.5 real}
shaneh100efa32010-07-07 16:20:38 +0000261do_test nan-4.12 {
drha06f17f2008-05-11 11:07:06 +0000262 db eval {DELETE FROM t1}
263 db eval "INSERT INTO t1 VALUES(-1234.5[string repeat 0 10000]12345)"
264 db eval {SELECT x, typeof(x) FROM t1}
265} {-1234.5 real}
shaneh100efa32010-07-07 16:20:38 +0000266do_test nan-4.13 {
drha06f17f2008-05-11 11:07:06 +0000267 db eval {DELETE FROM t1}
drha06f17f2008-05-11 11:07:06 +0000268 set small [string repeat 0 10000].[string repeat 0 324][string repeat 9 10000]
269 db eval "INSERT INTO t1 VALUES($small)"
270 db eval {SELECT x, typeof(x) FROM t1}
271} {0.0 real}
shaneh100efa32010-07-07 16:20:38 +0000272do_test nan-4.14 {
drha06f17f2008-05-11 11:07:06 +0000273 db eval {DELETE FROM t1}
274 set small \
275 -[string repeat 0 10000].[string repeat 0 324][string repeat 9 10000]
276 db eval "INSERT INTO t1 VALUES($small)"
277 db eval {SELECT x, typeof(x) FROM t1}
278} {0.0 real}
279
danielk1977b11bcfd2008-09-18 11:30:12 +0000280# These tests test some really, really small floating point numbers.
281#
282if {$tcl_platform(platform) != "symbian"} {
283 # These two are not run on symbian because tcl has trouble converting
284 # the very small numbers back to text form (probably due to a difference
285 # in the sprintf() implementation).
286 #
shaneh100efa32010-07-07 16:20:38 +0000287 do_test nan-4.15 {
danielk1977b11bcfd2008-09-18 11:30:12 +0000288 db eval {DELETE FROM t1}
289 set small \
290 [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
291 db eval "INSERT INTO t1 VALUES($small)"
292 db eval {SELECT x, typeof(x) FROM t1}
293 } {9.88131291682493e-324 real}
shaneh100efa32010-07-07 16:20:38 +0000294 do_test nan-4.16 {
danielk1977b11bcfd2008-09-18 11:30:12 +0000295 db eval {DELETE FROM t1}
296 set small \
297 -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
298 db eval "INSERT INTO t1 VALUES($small)"
299 db eval {SELECT x, typeof(x) FROM t1}
300 } {-9.88131291682493e-324 real}
301}
shaneh100efa32010-07-07 16:20:38 +0000302do_test nan-4.17 {
danielk1977b11bcfd2008-09-18 11:30:12 +0000303 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}
shaneh100efa32010-07-07 16:20:38 +0000308do_test nan-4.18 {
danielk1977b11bcfd2008-09-18 11:30:12 +0000309 db eval {DELETE FROM t1}
310 set small \
311 -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]
312 db eval "INSERT INTO t1 VALUES($small)"
313 db eval {SELECT CAST(x AS text), typeof(x) FROM t1}
314} {-9.88131291682493e-324 real}
315
dan33f53792011-05-05 19:44:22 +0000316do_realnum_test nan-4.20 {
drha06f17f2008-05-11 11:07:06 +0000317 db eval {DELETE FROM t1}
318 set big [string repeat 9 10000].0e-9000
319 db eval "INSERT INTO t1 VALUES($big)"
320 db eval {SELECT x, typeof(x) FROM t1}
shane6085f5e2009-08-21 02:13:14 +0000321} {inf real}
drha06f17f2008-05-11 11:07:06 +0000322
drh57db4a72011-10-17 20:41:46 +0000323do_realnum_test nan-4.30 {
324 db eval {
325 DELETE FROM t1;
326 INSERT INTO t1 VALUES('2.5e+9999');
327 SELECT x, typeof(x) FROM t1;
328 }
329} {inf real}
330do_realnum_test nan-4.31 {
331 db eval {
332 DELETE FROM t1;
333 INSERT INTO t1 VALUES('2.5e+10000');
334 SELECT x, typeof(x) FROM t1;
335 }
336} {inf real}
337
338do_realnum_test nan-4.32 {
339 db eval {
340 DELETE FROM t1;
341 INSERT INTO t1 VALUES('2.5e-9999');
342 SELECT x, typeof(x) FROM t1;
343 }
344} {0.0 real}
345do_realnum_test nan-4.33 {
346 db eval {
347 DELETE FROM t1;
348 INSERT INTO t1 VALUES('2.5e-10000');
349 SELECT x, typeof(x) FROM t1;
350 }
351} {0.0 real}
352do_realnum_test nan-4.34 {
353 db eval {
354 DELETE FROM t1;
355 INSERT INTO t1 VALUES('2.5e2147483650');
356 SELECT x, typeof(x) FROM t1;
357 }
358} {inf real}
359do_realnum_test nan-4.35 {
360 db eval {
361 DELETE FROM t1;
362 INSERT INTO t1 VALUES('2.5e-2147483650');
363 SELECT x, typeof(x) FROM t1;
364 }
365} {0.0 real}
366
367
368
drha06f17f2008-05-11 11:07:06 +0000369
drh2eaf93d2008-04-29 00:15:20 +0000370
371finish_test