OLD | NEW |
1 # 2015-11-06 | 1 # 2015-11-06 |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 do_test ieee754-111 { | 51 do_test ieee754-111 { |
52 string tolower [ | 52 string tolower [ |
53 db eval {SELECT ieee754(-1,1024), ieee754(-4503599627370495,972);} | 53 db eval {SELECT ieee754(-1,1024), ieee754(-4503599627370495,972);} |
54 ] | 54 ] |
55 } {-inf -1.79769313486232e+308} | 55 } {-inf -1.79769313486232e+308} |
56 do_execsql_test ieee754-112 { | 56 do_execsql_test ieee754-112 { |
57 SELECT ieee754(4503599627370495,973) is null; | 57 SELECT ieee754(4503599627370495,973) is null; |
58 } {1} | 58 } {1} |
59 | 59 |
60 finish_test | 60 finish_test |
OLD | NEW |