drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 1 | # 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 | # |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 17 | # 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 | # |
danielk1977 | b11bcfd | 2008-09-18 11:30:12 +0000 | [diff] [blame] | 21 | # $Id: nan.test,v 1.5 2008/09/18 11:30:13 danielk1977 Exp $ |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 22 | # |
| 23 | |
| 24 | set testdir [file dirname $argv0] |
| 25 | source $testdir/tester.tcl |
| 26 | |
dan | 68928b6 | 2010-06-22 13:46:43 +0000 | [diff] [blame] | 27 | # 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 | # |
| 30 | do_not_use_codec |
| 31 | |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 32 | do_test nan-1.1.1 { |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 33 | db eval { |
drh | b7d6362 | 2008-05-01 18:01:46 +0000 | [diff] [blame] | 34 | PRAGMA auto_vacuum=OFF; |
| 35 | PRAGMA page_size=1024; |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 36 | CREATE TABLE t1(x FLOAT); |
| 37 | } |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 38 | 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 |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 42 | db eval {SELECT x, typeof(x) FROM t1} |
| 43 | } {{} null} |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 44 | if {$tcl_platform(platform) != "symbian"} { |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 45 | do_realnum_test nan-1.1.2 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 46 | 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} |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 51 | do_realnum_test nan-1.1.3 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 52 | 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} |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 57 | do_realnum_test nan-1.1.4 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 58 | 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} |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 63 | do_realnum_test nan-1.1.5 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 64 | 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} |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 69 | do_realnum_test nan-1.1.6 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 70 | 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} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 75 | do_test nan-1.1.7 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 76 | 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 | # |
| 90 | do_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} |
| 99 | do_test nan-1.2.2 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 100 | sqlite3_bind_double $::STMT 1 +Inf |
| 101 | sqlite3_step $::STMT |
| 102 | sqlite3_reset $::STMT |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 103 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 104 | } {{} null Inf real} |
| 105 | do_test nan-1.2.3 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 106 | sqlite3_bind_double $::STMT 1 -Inf |
| 107 | sqlite3_step $::STMT |
| 108 | sqlite3_reset $::STMT |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 109 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 110 | } {{} null Inf real -Inf real} |
| 111 | do_test nan-1.2.4 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 112 | sqlite3_bind_double $::STMT 1 -NaN |
| 113 | sqlite3_step $::STMT |
| 114 | sqlite3_reset $::STMT |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 115 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 116 | } {{} null Inf real -Inf real {} null} |
| 117 | do_test nan-1.2.5 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 118 | sqlite3_bind_double $::STMT 1 NaN0 |
| 119 | sqlite3_step $::STMT |
| 120 | sqlite3_reset $::STMT |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 121 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 122 | } {{} null Inf real -Inf real {} null {} null} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 123 | do_test nan-1.2.6 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 124 | sqlite3_bind_double $::STMT 1 -NaN0 |
| 125 | sqlite3_step $::STMT |
| 126 | sqlite3_reset $::STMT |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 127 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 128 | } {{} null Inf real -Inf real {} null {} null {} null} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 129 | do_test nan-1.2.7 { |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 130 | db eval { |
| 131 | UPDATE t1 SET x=x-x; |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 132 | SELECT CAST(x AS text), typeof(x) FROM t1; |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 133 | } |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 134 | } {{} null {} null {} null {} null {} null {} null} |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 135 | |
| 136 | do_test nan-2.1 { |
| 137 | db eval { |
| 138 | DELETE FROM T1; |
| 139 | } |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 140 | sqlite3_bind_double $::STMT 1 NaN |
| 141 | sqlite3_step $::STMT |
| 142 | sqlite3_reset $::STMT |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 143 | db eval {SELECT x, typeof(x) FROM t1} |
| 144 | } {{} null} |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 145 | sqlite3_finalize $::STMT |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 146 | |
| 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 | # |
drh | 7da56b4 | 2016-03-14 18:34:42 +0000 | [diff] [blame] | 154 | if {![nonzero_reserved_bytes]} { |
| 155 | do_test nan-3.1 { |
| 156 | db eval { |
| 157 | DELETE FROM t1; |
| 158 | INSERT INTO t1 VALUES(0.5); |
| 159 | PRAGMA auto_vacuum=OFF; |
| 160 | PRAGMA page_size=1024; |
| 161 | VACUUM; |
| 162 | } |
| 163 | hexio_read test.db 2040 8 |
| 164 | } {3FE0000000000000} |
| 165 | do_test nan-3.2 { |
| 166 | db eval { |
| 167 | SELECT x, typeof(x) FROM t1 |
| 168 | } |
| 169 | } {0.5 real} |
| 170 | do_test nan-3.3 { |
| 171 | db close |
| 172 | hexio_write test.db 2040 FFF8000000000000 |
| 173 | sqlite3 db test.db |
| 174 | db eval {SELECT x, typeof(x) FROM t1} |
| 175 | } {{} null} |
| 176 | do_test nan-3.4 { |
| 177 | db close |
| 178 | hexio_write test.db 2040 7FF8000000000000 |
| 179 | sqlite3 db test.db |
| 180 | db eval {SELECT x, typeof(x) FROM t1} |
| 181 | } {{} null} |
| 182 | do_test nan-3.5 { |
| 183 | db close |
| 184 | hexio_write test.db 2040 FFFFFFFFFFFFFFFF |
| 185 | sqlite3 db test.db |
| 186 | db eval {SELECT x, typeof(x) FROM t1} |
| 187 | } {{} null} |
| 188 | do_test nan-3.6 { |
| 189 | db close |
| 190 | hexio_write test.db 2040 7FFFFFFFFFFFFFFF |
| 191 | sqlite3 db test.db |
| 192 | db eval {SELECT x, typeof(x) FROM t1} |
| 193 | } {{} null} |
| 194 | } |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 195 | |
| 196 | # Verify that the sqlite3AtoF routine is able to handle extreme |
| 197 | # numbers. |
| 198 | # |
| 199 | do_test nan-4.1 { |
| 200 | db eval {DELETE FROM t1} |
| 201 | db eval "INSERT INTO t1 VALUES([string repeat 9 307].0)" |
| 202 | db eval {SELECT x, typeof(x) FROM t1} |
| 203 | } {1e+307 real} |
| 204 | do_test nan-4.2 { |
| 205 | db eval {DELETE FROM t1} |
| 206 | db eval "INSERT INTO t1 VALUES([string repeat 9 308].0)" |
| 207 | db eval {SELECT x, typeof(x) FROM t1} |
| 208 | } {1e+308 real} |
| 209 | do_test nan-4.3 { |
| 210 | db eval {DELETE FROM t1} |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 211 | db eval "INSERT INTO t1 VALUES(-[string repeat 9 307].0)" |
| 212 | db eval {SELECT x, typeof(x) FROM t1} |
| 213 | } {-1e+307 real} |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 214 | do_test nan-4.4 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 215 | db eval {DELETE FROM t1} |
| 216 | db eval "INSERT INTO t1 VALUES(-[string repeat 9 308].0)" |
| 217 | db eval {SELECT x, typeof(x) FROM t1} |
| 218 | } {-1e+308 real} |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 219 | do_test nan-4.5 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 220 | db eval {DELETE FROM t1} |
| 221 | set big -[string repeat 0 10000][string repeat 9 308].[string repeat 0 10000] |
| 222 | db eval "INSERT INTO t1 VALUES($big)" |
| 223 | db eval {SELECT x, typeof(x) FROM t1} |
| 224 | } {-1e+308 real} |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 225 | do_test nan-4.6 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 226 | db eval {DELETE FROM t1} |
| 227 | set big [string repeat 0 10000][string repeat 9 308].[string repeat 0 10000] |
| 228 | db eval "INSERT INTO t1 VALUES($big)" |
| 229 | db eval {SELECT x, typeof(x) FROM t1} |
| 230 | } {1e+308 real} |
| 231 | |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 232 | if {$tcl_platform(platform) != "symbian"} { |
| 233 | # Do not run these tests on Symbian, as the Tcl port doesn't like to |
| 234 | # convert from floating point value "-inf" to a string. |
| 235 | # |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 236 | do_realnum_test nan-4.7 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 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} |
| 240 | } {inf real} |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 241 | do_realnum_test nan-4.8 { |
danielk1977 | 89bae3e | 2008-09-17 16:14:10 +0000 | [diff] [blame] | 242 | db eval {DELETE FROM t1} |
| 243 | db eval "INSERT INTO t1 VALUES(-[string repeat 9 309].0)" |
| 244 | db eval {SELECT x, typeof(x) FROM t1} |
| 245 | } {-inf real} |
| 246 | } |
| 247 | do_test nan-4.9 { |
| 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} |
| 251 | } {Inf real} |
| 252 | do_test nan-4.10 { |
| 253 | db eval {DELETE FROM t1} |
| 254 | db eval "INSERT INTO t1 VALUES(-[string repeat 9 309].0)" |
| 255 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 256 | } {-Inf real} |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 257 | |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 258 | do_test nan-4.11 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 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} |
| 262 | } {1234.5 real} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 263 | do_test nan-4.12 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 264 | db eval {DELETE FROM t1} |
| 265 | db eval "INSERT INTO t1 VALUES(-1234.5[string repeat 0 10000]12345)" |
| 266 | db eval {SELECT x, typeof(x) FROM t1} |
| 267 | } {-1234.5 real} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 268 | do_test nan-4.13 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 269 | db eval {DELETE FROM t1} |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 270 | set small [string repeat 0 10000].[string repeat 0 324][string repeat 9 10000] |
| 271 | db eval "INSERT INTO t1 VALUES($small)" |
| 272 | db eval {SELECT x, typeof(x) FROM t1} |
| 273 | } {0.0 real} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 274 | do_test nan-4.14 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 275 | db eval {DELETE FROM t1} |
| 276 | set small \ |
| 277 | -[string repeat 0 10000].[string repeat 0 324][string repeat 9 10000] |
| 278 | db eval "INSERT INTO t1 VALUES($small)" |
| 279 | db eval {SELECT x, typeof(x) FROM t1} |
| 280 | } {0.0 real} |
| 281 | |
danielk1977 | b11bcfd | 2008-09-18 11:30:12 +0000 | [diff] [blame] | 282 | # These tests test some really, really small floating point numbers. |
| 283 | # |
| 284 | if {$tcl_platform(platform) != "symbian"} { |
| 285 | # These two are not run on symbian because tcl has trouble converting |
| 286 | # the very small numbers back to text form (probably due to a difference |
| 287 | # in the sprintf() implementation). |
| 288 | # |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 289 | do_test nan-4.15 { |
danielk1977 | b11bcfd | 2008-09-18 11:30:12 +0000 | [diff] [blame] | 290 | db eval {DELETE FROM t1} |
| 291 | set small \ |
| 292 | [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] |
| 293 | db eval "INSERT INTO t1 VALUES($small)" |
| 294 | db eval {SELECT x, typeof(x) FROM t1} |
| 295 | } {9.88131291682493e-324 real} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 296 | do_test nan-4.16 { |
danielk1977 | b11bcfd | 2008-09-18 11:30:12 +0000 | [diff] [blame] | 297 | db eval {DELETE FROM t1} |
| 298 | set small \ |
| 299 | -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] |
| 300 | db eval "INSERT INTO t1 VALUES($small)" |
| 301 | db eval {SELECT x, typeof(x) FROM t1} |
| 302 | } {-9.88131291682493e-324 real} |
| 303 | } |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 304 | do_test nan-4.17 { |
danielk1977 | b11bcfd | 2008-09-18 11:30:12 +0000 | [diff] [blame] | 305 | db eval {DELETE FROM t1} |
| 306 | set small [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] |
| 307 | db eval "INSERT INTO t1 VALUES($small)" |
| 308 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 309 | } {9.88131291682493e-324 real} |
shaneh | 100efa3 | 2010-07-07 16:20:38 +0000 | [diff] [blame] | 310 | do_test nan-4.18 { |
danielk1977 | b11bcfd | 2008-09-18 11:30:12 +0000 | [diff] [blame] | 311 | db eval {DELETE FROM t1} |
| 312 | set small \ |
| 313 | -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] |
| 314 | db eval "INSERT INTO t1 VALUES($small)" |
| 315 | db eval {SELECT CAST(x AS text), typeof(x) FROM t1} |
| 316 | } {-9.88131291682493e-324 real} |
| 317 | |
dan | 33f5379 | 2011-05-05 19:44:22 +0000 | [diff] [blame] | 318 | do_realnum_test nan-4.20 { |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 319 | db eval {DELETE FROM t1} |
| 320 | set big [string repeat 9 10000].0e-9000 |
| 321 | db eval "INSERT INTO t1 VALUES($big)" |
| 322 | db eval {SELECT x, typeof(x) FROM t1} |
shane | 6085f5e | 2009-08-21 02:13:14 +0000 | [diff] [blame] | 323 | } {inf real} |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 324 | |
drh | 57db4a7 | 2011-10-17 20:41:46 +0000 | [diff] [blame] | 325 | do_realnum_test nan-4.30 { |
| 326 | db eval { |
| 327 | DELETE FROM t1; |
| 328 | INSERT INTO t1 VALUES('2.5e+9999'); |
| 329 | SELECT x, typeof(x) FROM t1; |
| 330 | } |
| 331 | } {inf real} |
| 332 | do_realnum_test nan-4.31 { |
| 333 | db eval { |
| 334 | DELETE FROM t1; |
| 335 | INSERT INTO t1 VALUES('2.5e+10000'); |
| 336 | SELECT x, typeof(x) FROM t1; |
| 337 | } |
| 338 | } {inf real} |
| 339 | |
| 340 | do_realnum_test nan-4.32 { |
| 341 | db eval { |
| 342 | DELETE FROM t1; |
| 343 | INSERT INTO t1 VALUES('2.5e-9999'); |
| 344 | SELECT x, typeof(x) FROM t1; |
| 345 | } |
| 346 | } {0.0 real} |
| 347 | do_realnum_test nan-4.33 { |
| 348 | db eval { |
| 349 | DELETE FROM t1; |
| 350 | INSERT INTO t1 VALUES('2.5e-10000'); |
| 351 | SELECT x, typeof(x) FROM t1; |
| 352 | } |
| 353 | } {0.0 real} |
| 354 | do_realnum_test nan-4.34 { |
| 355 | db eval { |
| 356 | DELETE FROM t1; |
| 357 | INSERT INTO t1 VALUES('2.5e2147483650'); |
| 358 | SELECT x, typeof(x) FROM t1; |
| 359 | } |
| 360 | } {inf real} |
| 361 | do_realnum_test nan-4.35 { |
| 362 | db eval { |
| 363 | DELETE FROM t1; |
| 364 | INSERT INTO t1 VALUES('2.5e-2147483650'); |
| 365 | SELECT x, typeof(x) FROM t1; |
| 366 | } |
| 367 | } {0.0 real} |
| 368 | |
| 369 | |
| 370 | |
drh | a06f17f | 2008-05-11 11:07:06 +0000 | [diff] [blame] | 371 | |
drh | 2eaf93d | 2008-04-29 00:15:20 +0000 | [diff] [blame] | 372 | |
| 373 | finish_test |