3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this file is testing the CAST operator.
14 # $Id: cast.test,v 1.10 2008/11/06 15:33:04 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # Only run these tests if the build includes the CAST operator
25 # Tests for the CAST( AS blob), CAST( AS text) and CAST( AS numeric) built-ins
29 execsql {SELECT x'616263'}
32 execsql {SELECT typeof(x'616263')}
35 execsql {SELECT CAST(x'616263' AS text)}
38 execsql {SELECT typeof(CAST(x'616263' AS text))}
41 execsql {SELECT CAST(x'616263' AS numeric)}
44 execsql {SELECT typeof(CAST(x'616263' AS numeric))}
47 execsql {SELECT CAST(x'616263' AS blob)}
50 execsql {SELECT typeof(CAST(x'616263' AS blob))}
53 execsql {SELECT CAST(x'616263' AS integer)}
56 execsql {SELECT typeof(CAST(x'616263' AS integer))}
63 execsql {SELECT typeof(NULL)}
66 execsql {SELECT CAST(NULL AS text)}
69 execsql {SELECT typeof(CAST(NULL AS text))}
72 execsql {SELECT CAST(NULL AS numeric)}
75 execsql {SELECT typeof(CAST(NULL AS numeric))}
78 execsql {SELECT CAST(NULL AS blob)}
81 execsql {SELECT typeof(CAST(NULL AS blob))}
84 execsql {SELECT CAST(NULL AS integer)}
87 execsql {SELECT typeof(CAST(NULL AS integer))}
93 execsql {SELECT typeof(123)}
96 execsql {SELECT CAST(123 AS text)}
99 execsql {SELECT typeof(CAST(123 AS text))}
102 execsql {SELECT CAST(123 AS numeric)}
105 execsql {SELECT typeof(CAST(123 AS numeric))}
108 execsql {SELECT CAST(123 AS blob)}
111 execsql {SELECT typeof(CAST(123 AS blob))}
114 execsql {SELECT CAST(123 AS integer)}
117 execsql {SELECT typeof(CAST(123 AS integer))}
120 execsql {SELECT 123.456}
123 execsql {SELECT typeof(123.456)}
126 execsql {SELECT CAST(123.456 AS text)}
129 execsql {SELECT typeof(CAST(123.456 AS text))}
132 execsql {SELECT CAST(123.456 AS numeric)}
135 execsql {SELECT typeof(CAST(123.456 AS numeric))}
138 execsql {SELECT CAST(123.456 AS blob)}
141 execsql {SELECT typeof(CAST(123.456 AS blob))}
144 execsql {SELECT CAST(123.456 AS integer)}
147 execsql {SELECT typeof(CAST(123.456 AS integer))}
150 execsql {SELECT '123abc'}
153 execsql {SELECT typeof('123abc')}
156 execsql {SELECT CAST('123abc' AS text)}
159 execsql {SELECT typeof(CAST('123abc' AS text))}
162 execsql {SELECT CAST('123abc' AS numeric)}
165 execsql {SELECT typeof(CAST('123abc' AS numeric))}
168 execsql {SELECT CAST('123abc' AS blob)}
171 execsql {SELECT typeof(CAST('123abc' AS blob))}
174 execsql {SELECT CAST('123abc' AS integer)}
177 execsql {SELECT typeof(CAST('123abc' AS integer))}
180 execsql {SELECT CAST('123.5abc' AS numeric)}
183 execsql {SELECT CAST('123.5abc' AS integer)}
187 execsql {SELECT CAST(null AS REAL)}
190 execsql {SELECT typeof(CAST(null AS REAL))}
193 execsql {SELECT CAST(1 AS REAL)}
196 execsql {SELECT typeof(CAST(1 AS REAL))}
199 execsql {SELECT CAST('1' AS REAL)}
202 execsql {SELECT typeof(CAST('1' AS REAL))}
205 execsql {SELECT CAST('abc' AS REAL)}
208 execsql {SELECT typeof(CAST('abc' AS REAL))}
211 execsql {SELECT CAST(x'31' AS REAL)}
214 execsql {SELECT typeof(CAST(x'31' AS REAL))}
218 # Ticket #1662. Ignore leading spaces in numbers when casting.
221 execsql {SELECT CAST(' 123' AS integer)}
224 execsql {SELECT CAST(' -123.456' AS real)}
227 # ticket #2364. Use full percision integers if possible when casting
228 # to numeric. Do not fallback to real (and the corresponding 48-bit
229 # mantissa) unless absolutely necessary.
232 execsql {SELECT CAST(9223372036854774800 AS integer)}
233 } 9223372036854774800
235 execsql {SELECT CAST(9223372036854774800 AS numeric)}
236 } 9223372036854774800
237 do_realnum_test cast-3.3 {
238 execsql {SELECT CAST(9223372036854774800 AS real)}
239 } 9.22337203685477e+18
241 execsql {SELECT CAST(CAST(9223372036854774800 AS real) AS integer)}
242 } 9223372036854774784
244 execsql {SELECT CAST(-9223372036854774800 AS integer)}
245 } -9223372036854774800
247 execsql {SELECT CAST(-9223372036854774800 AS numeric)}
248 } -9223372036854774800
249 do_realnum_test cast-3.7 {
250 execsql {SELECT CAST(-9223372036854774800 AS real)}
251 } -9.22337203685477e+18
253 execsql {SELECT CAST(CAST(-9223372036854774800 AS real) AS integer)}
254 } -9223372036854774784
256 execsql {SELECT CAST('9223372036854774800' AS integer)}
257 } 9223372036854774800
259 execsql {SELECT CAST('9223372036854774800' AS numeric)}
260 } 9223372036854774800
261 do_realnum_test cast-3.13 {
262 execsql {SELECT CAST('9223372036854774800' AS real)}
263 } 9.22337203685477e+18
264 ifcapable long_double {
266 execsql {SELECT CAST(CAST('9223372036854774800' AS real) AS integer)}
267 } 9223372036854774784
270 execsql {SELECT CAST('-9223372036854774800' AS integer)}
271 } -9223372036854774800
273 execsql {SELECT CAST('-9223372036854774800' AS numeric)}
274 } -9223372036854774800
275 do_realnum_test cast-3.17 {
276 execsql {SELECT CAST('-9223372036854774800' AS real)}
277 } -9.22337203685477e+18
278 ifcapable long_double {
280 execsql {SELECT CAST(CAST('-9223372036854774800' AS real) AS integer)}
281 } -9223372036854774784
283 if {[db eval {PRAGMA encoding}]=="UTF-8"} {
285 execsql {SELECT CAST(x'39323233333732303336383534373734383030' AS integer)}
286 } 9223372036854774800
288 execsql {SELECT CAST(x'39323233333732303336383534373734383030' AS numeric)}
289 } 9223372036854774800
290 do_realnum_test cast-3.23 {
291 execsql {SELECT CAST(x'39323233333732303336383534373734383030' AS real)}
292 } 9.22337203685477e+18
293 ifcapable long_double {
296 SELECT CAST(CAST(x'39323233333732303336383534373734383030' AS real)
299 } 9223372036854774784
303 execsql {SELECT CAST(NULL AS numeric)}
306 # Test to see if it is possible to trick SQLite into reading past
307 # the end of a blob when converting it to a number.
308 do_test cast-3.32.1 {
309 set blob "1234567890"
310 set DB [sqlite3_connection_pointer db]
311 set ::STMT [sqlite3_prepare $DB {SELECT CAST(? AS real)} -1 TAIL]
312 sqlite3_bind_blob -static $::STMT 1 $blob 5
315 do_test cast-3.32.2 {
316 sqlite3_column_int $::STMT 0
318 do_test cast-3.32.3 {
319 sqlite3_finalize $::STMT
326 INSERT INTO t1 VALUES('abc');
327 SELECT a, CAST(a AS integer) FROM t1;
332 SELECT CAST(a AS integer), a FROM t1;
337 SELECT a, CAST(a AS integer), a FROM t1;
342 SELECT CAST(a AS integer), a, CAST(a AS real), a FROM t1;