Lines Matching refs:xyz

21   sqlite3_mprintf_int {abc: %d %x %o :xyz}\
23 } {abc: 1 1 1 :xyz}
25 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
27 } {abc: ( 1) ( 1) ( 1) :xyz}
29 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
31 } {abc: (1 ) (1 ) (1 ) :xyz}
33 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
35 } {abc: ( +1) ( 1) ( 1) :xyz}
37 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
39 } {abc: (000001) (000001) (000001) :xyz}
41 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
43 } {abc: ( 1) ( 1) ( 1) :xyz}
45 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
47 } {abc: ( 1) ( 0x1) ( 01) :xyz}
49 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
51 } {abc: 2 2 2 :xyz}
53 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
55 } {abc: ( 2) ( 2) ( 2) :xyz}
57 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
59 } {abc: (2 ) (2 ) (2 ) :xyz}
61 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
63 } {abc: ( +2) ( 2) ( 2) :xyz}
65 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
67 } {abc: (000002) (000002) (000002) :xyz}
69 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
71 } {abc: ( 2) ( 2) ( 2) :xyz}
73 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
75 } {abc: ( 2) ( 0x2) ( 02) :xyz}
77 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
79 } {abc: 5 5 5 :xyz}
81 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
83 } {abc: ( 5) ( 5) ( 5) :xyz}
85 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
87 } {abc: (5 ) (5 ) (5 ) :xyz}
89 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
91 } {abc: ( +5) ( 5) ( 5) :xyz}
93 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
95 } {abc: (000005) (000005) (000005) :xyz}
97 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
99 } {abc: ( 5) ( 5) ( 5) :xyz}
101 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
103 } {abc: ( 5) ( 0x5) ( 05) :xyz}
105 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
107 } {abc: 10 a 12 :xyz}
109 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
111 } {abc: ( 10) ( a) ( 12) :xyz}
113 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
115 } {abc: (10 ) (a ) (12 ) :xyz}
117 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
119 } {abc: ( +10) ( a) ( 12) :xyz}
121 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
123 } {abc: (000010) (00000a) (000012) :xyz}
125 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
127 } {abc: ( 10) ( a) ( 12) :xyz}
129 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
131 } {abc: ( 10) ( 0xa) ( 012) :xyz}
133 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
135 } {abc: 99 63 143 :xyz}
137 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
139 } {abc: ( 99) ( 63) ( 143) :xyz}
141 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
143 } {abc: (99 ) (63 ) (143 ) :xyz}
145 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
147 } {abc: ( +99) ( 63) ( 143) :xyz}
149 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
151 } {abc: (000099) (000063) (000143) :xyz}
153 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
155 } {abc: ( 99) ( 63) ( 143) :xyz}
157 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
159 } {abc: ( 99) ( 0x63) ( 0143) :xyz}
161 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
163 } {abc: 100 64 144 :xyz}
165 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
167 } {abc: ( 100) ( 64) ( 144) :xyz}
169 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
171 } {abc: (100 ) (64 ) (144 ) :xyz}
173 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
175 } {abc: ( +100) ( 64) ( 144) :xyz}
177 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
179 } {abc: (000100) (000064) (000144) :xyz}
181 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
183 } {abc: ( 100) ( 64) ( 144) :xyz}
185 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
187 } {abc: ( 100) ( 0x64) ( 0144) :xyz}
189 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
191 } {abc: 1000000 f4240 3641100 :xyz}
193 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
195 } {abc: (1000000) ( f4240) (3641100) :xyz}
197 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
199 } {abc: (1000000) (f4240 ) (3641100) :xyz}
201 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
203 } {abc: (+1000000) ( f4240) (3641100) :xyz}
205 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
207 } {abc: (1000000) (0f4240) (3641100) :xyz}
209 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
211 } {abc: ( 1000000) ( f4240) (3641100) :xyz}
213 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
215 } {abc: (1000000) (0xf4240) (03641100) :xyz}
217 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
219 } {abc: 999999999 3b9ac9ff 7346544777 :xyz}
221 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
223 } {abc: (999999999) (3b9ac9ff) (7346544777) :xyz}
225 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
227 } {abc: (999999999) (3b9ac9ff) (7346544777) :xyz}
229 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
231 } {abc: (+999999999) (3b9ac9ff) (7346544777) :xyz}
233 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
235 } {abc: (999999999) (3b9ac9ff) (7346544777) :xyz}
237 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
239 } {abc: ( 999999999) (3b9ac9ff) (7346544777) :xyz}
241 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
243 } {abc: (999999999) (0x3b9ac9ff) (07346544777) :xyz}
245 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
247 } {abc: 0 0 0 :xyz}
249 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
251 } {abc: ( 0) ( 0) ( 0) :xyz}
253 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
255 } {abc: (0 ) (0 ) (0 ) :xyz}
257 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
259 } {abc: ( +0) ( 0) ( 0) :xyz}
261 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
263 } {abc: (000000) (000000) (000000) :xyz}
265 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
267 } {abc: ( 0) ( 0) ( 0) :xyz}
269 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
271 } {abc: ( 0) ( 0) ( 0) :xyz}
274 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
276 } {abc: -1 ffffffff 37777777777 :xyz}
278 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
280 } {abc: ( -1) (ffffffff) (37777777777) :xyz}
282 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
284 } {abc: (-1 ) (ffffffff) (37777777777) :xyz}
286 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
288 } {abc: ( -1) (ffffffff) (37777777777) :xyz}
290 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
292 } {abc: (-00001) (ffffffff) (37777777777) :xyz}
294 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
296 } {abc: ( -1) (ffffffff) (37777777777) :xyz}
298 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
300 } {abc: ( -1) (0xffffffff) (037777777777) :xyz}
303 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
305 } {abc: -2 fffffffe 37777777776 :xyz}
307 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
309 } {abc: ( -2) (fffffffe) (37777777776) :xyz}
311 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
313 } {abc: (-2 ) (fffffffe) (37777777776) :xyz}
315 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
317 } {abc: ( -2) (fffffffe) (37777777776) :xyz}
319 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
321 } {abc: (-00002) (fffffffe) (37777777776) :xyz}
323 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
325 } {abc: ( -2) (fffffffe) (37777777776) :xyz}
327 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
329 } {abc: ( -2) (0xfffffffe) (037777777776) :xyz}
332 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
334 } {abc: -5 fffffffb 37777777773 :xyz}
336 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
338 } {abc: ( -5) (fffffffb) (37777777773) :xyz}
340 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
342 } {abc: (-5 ) (fffffffb) (37777777773) :xyz}
344 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
346 } {abc: ( -5) (fffffffb) (37777777773) :xyz}
348 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
350 } {abc: (-00005) (fffffffb) (37777777773) :xyz}
352 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
354 } {abc: ( -5) (fffffffb) (37777777773) :xyz}
356 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
358 } {abc: ( -5) (0xfffffffb) (037777777773) :xyz}
361 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
363 } {abc: -10 fffffff6 37777777766 :xyz}
365 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
367 } {abc: ( -10) (fffffff6) (37777777766) :xyz}
369 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
371 } {abc: (-10 ) (fffffff6) (37777777766) :xyz}
373 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
375 } {abc: ( -10) (fffffff6) (37777777766) :xyz}
377 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
379 } {abc: (-00010) (fffffff6) (37777777766) :xyz}
381 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
383 } {abc: ( -10) (fffffff6) (37777777766) :xyz}
385 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
387 } {abc: ( -10) (0xfffffff6) (037777777766) :xyz}
390 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
392 } {abc: -99 ffffff9d 37777777635 :xyz}
394 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
396 } {abc: ( -99) (ffffff9d) (37777777635) :xyz}
398 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
400 } {abc: (-99 ) (ffffff9d) (37777777635) :xyz}
402 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
404 } {abc: ( -99) (ffffff9d) (37777777635) :xyz}
406 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
408 } {abc: (-00099) (ffffff9d) (37777777635) :xyz}
410 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
412 } {abc: ( -99) (ffffff9d) (37777777635) :xyz}
414 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
416 } {abc: ( -99) (0xffffff9d) (037777777635) :xyz}
419 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
421 } {abc: -100 ffffff9c 37777777634 :xyz}
423 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
425 } {abc: ( -100) (ffffff9c) (37777777634) :xyz}
427 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
429 } {abc: (-100 ) (ffffff9c) (37777777634) :xyz}
431 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
433 } {abc: ( -100) (ffffff9c) (37777777634) :xyz}
435 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
437 } {abc: (-00100) (ffffff9c) (37777777634) :xyz}
439 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
441 } {abc: ( -100) (ffffff9c) (37777777634) :xyz}
443 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
445 } {abc: ( -100) (0xffffff9c) (037777777634) :xyz}
448 sqlite3_mprintf_int {abc: %d %x %o :xyz}\
450 } {abc: -9999999 ff676981 37731664601 :xyz}
452 sqlite3_mprintf_int {abc: (%6d) (%6x) (%6o) :xyz}\
454 } {abc: (-9999999) (ff676981) (37731664601) :xyz}
456 sqlite3_mprintf_int {abc: (%-6d) (%-6x) (%-6o) :xyz}\
458 } {abc: (-9999999) (ff676981) (37731664601) :xyz}
460 sqlite3_mprintf_int {abc: (%+6d) (%+6x) (%+6o) :xyz}\
462 } {abc: (-9999999) (ff676981) (37731664601) :xyz}
464 sqlite3_mprintf_int {abc: (%06d) (%06x) (%06o) :xyz}\
466 } {abc: (-9999999) (ff676981) (37731664601) :xyz}
468 sqlite3_mprintf_int {abc: (% 6d) (% 6x) (% 6o) :xyz}\
470 } {abc: (-9999999) (ff676981) (37731664601) :xyz}
472 sqlite3_mprintf_int {abc: (%#6d) (%#6x) (%#6o) :xyz}\
474 } {abc: (-9999999) (0xff676981) (037731664601) :xyz}
488 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 0.001
489 } {abc: (0.0) :xyz}
491 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 0.001
492 } {abc: (1.0e-03) :xyz}
494 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 0.001
495 } {abc: (0.001) :xyz}
497 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 0.001
498 } {abc: 1 1 (0.001) :xyz}
500 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 0.001
501 } {abc: 1 1 (0.00100000) :xyz}
503 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 0.001
504 } {abc: 1 1 (000000.001) :xyz}
506 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 0.001
507 } {abc: 1 1 (0.0) :xyz}
509 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 0.001
510 } {abc: 1 1 (1.0e-03) :xyz}
512 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 0.001
513 } {abc: 1 1 (0.001) :xyz}
515 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 1.0e-20
516 } {abc: (0.0) :xyz}
518 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 1.0e-20
519 } {abc: (1.0e-20) :xyz}
521 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 1.0e-20
522 } {abc: (1e-20) :xyz}
524 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 1.0e-20
525 } {abc: 1 1 (1e-20) :xyz}
527 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 1.0e-20
528 } {abc: 1 1 (1.00000e-20) :xyz}
530 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 1.0e-20
531 } {abc: 1 1 (000001e-20) :xyz}
533 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 1.0e-20
534 } {abc: 1 1 (0.0) :xyz}
536 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 1.0e-20
537 } {abc: 1 1 (1.0e-20) :xyz}
539 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 1.0e-20
540 } {abc: 1 1 (1e-20) :xyz}
547 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 1.0
548 } {abc: (1.0) :xyz}
550 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 1.0
551 } {abc: (1.0e+00) :xyz}
553 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 1.0
554 } {abc: (1) :xyz}
556 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 1.0
557 } {abc: 1 1 (1) :xyz}
559 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 1.0
560 } {abc: 1 1 (1.00000) :xyz}
562 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 1.0
563 } {abc: 1 1 (0000000001) :xyz}
565 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 1.0
566 } {abc: 1 1 (1.0) :xyz}
568 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 1.0
569 } {abc: 1 1 (1.0e+00) :xyz}
571 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 1.0
572 } {abc: 1 1 (1) :xyz}
574 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 0.0
575 } {abc: (0.0) :xyz}
577 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 0.0
578 } {abc: (0.0e+00) :xyz}
580 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 0.0
581 } {abc: (0) :xyz}
583 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 0.0
584 } {abc: 1 1 (0) :xyz}
586 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 0.0
587 } {abc: 1 1 (0.00000) :xyz}
589 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 0.0
590 } {abc: 1 1 (0000000000) :xyz}
592 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 0.0
593 } {abc: 1 1 (0.0) :xyz}
595 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 0.0
596 } {abc: 1 1 (0.0e+00) :xyz}
598 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 0.0
599 } {abc: 1 1 (0) :xyz}
601 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 100.0
602 } {abc: (100.0) :xyz}
604 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 100.0
605 } {abc: (1.0e+02) :xyz}
607 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 100.0
608 } {abc: (1e+02) :xyz}
610 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 100.0
611 } {abc: 1 1 (100) :xyz}
613 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 100.0
614 } {abc: 1 1 (100.000) :xyz}
616 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 100.0
617 } {abc: 1 1 (0000000100) :xyz}
619 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 100.0
620 } {abc: 1 1 (100.0) :xyz}
622 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 100.0
623 } {abc: 1 1 (1.0e+02) :xyz}
625 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 100.0
626 } {abc: 1 1 (1e+02) :xyz}
628 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 9.99999
629 } {abc: (10.0) :xyz}
631 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 9.99999
632 } {abc: (1.0e+01) :xyz}
634 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 9.99999
635 } {abc: (1e+01) :xyz}
637 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 9.99999
638 } {abc: 1 1 (9.99999) :xyz}
640 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 9.99999
641 } {abc: 1 1 (9.99999) :xyz}
643 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 9.99999
644 } {abc: 1 1 (0009.99999) :xyz}
646 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 9.99999
647 } {abc: 1 1 (10.0) :xyz}
649 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 9.99999
650 } {abc: 1 1 (1.0e+01) :xyz}
652 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 9.99999
653 } {abc: 1 1 (1e+01) :xyz}
655 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 -0.00543
656 } {abc: (-0.0) :xyz}
658 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 -0.00543
659 } {abc: (-5.4e-03) :xyz}
661 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 -0.00543
662 } {abc: (-0.005) :xyz}
664 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 -0.00543
665 } {abc: 1 1 (-0.00543) :xyz}
667 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 -0.00543
668 } {abc: 1 1 (-0.00543000) :xyz}
670 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 -0.00543
671 } {abc: 1 1 (-000.00543) :xyz}
673 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 -0.00543
674 } {abc: 1 1 (-0.0) :xyz}
676 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 -0.00543
677 } {abc: 1 1 (-5.4e-03) :xyz}
679 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 -0.00543
680 } {abc: 1 1 (-0.005) :xyz}
682 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 -1.0
683 } {abc: (-1.0) :xyz}
685 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 -1.0
686 } {abc: (-1.0e+00) :xyz}
688 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 -1.0
689 } {abc: (-1) :xyz}
691 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 -1.0
692 } {abc: 1 1 (-1) :xyz}
694 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 -1.0
695 } {abc: 1 1 (-1.00000) :xyz}
697 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 -1.0
698 } {abc: 1 1 (-000000001) :xyz}
700 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 -1.0
701 } {abc: 1 1 (-1.0) :xyz}
703 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 -1.0
704 } {abc: 1 1 (-1.0e+00) :xyz}
706 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 -1.0
707 } {abc: 1 1 (-1) :xyz}
709 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 -99.99999
710 } {abc: (-100.0) :xyz}
712 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 -99.99999
713 } {abc: (-1.0e+02) :xyz}
715 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 -99.99999
716 } {abc: (-1e+02) :xyz}
718 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 -99.99999
719 } {abc: 1 1 (-100) :xyz}
721 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 -99.99999
722 } {abc: 1 1 (-100.000) :xyz}
724 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 -99.99999
725 } {abc: 1 1 (-000000100) :xyz}
727 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 -99.99999
728 } {abc: 1 1 (-100.0) :xyz}
730 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 -99.99999
731 } {abc: 1 1 (-1.0e+02) :xyz}
733 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 -99.99999
734 } {abc: 1 1 (-1e+02) :xyz}
736 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 3.14e+9
737 } {abc: (3140000000.0) :xyz}
739 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 3.14e+9
740 } {abc: (3.1e+09) :xyz}
742 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 3.14e+9
743 } {abc: (3e+09) :xyz}
745 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 3.14e+9
746 } {abc: 1 1 (3.14e+09) :xyz}
748 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 3.14e+9
749 } {abc: 1 1 (3.14000e+09) :xyz}
751 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 3.14e+9
752 } {abc: 1 1 (003.14e+09) :xyz}
754 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 3.14e+9
755 } {abc: 1 1 (3140000000.0) :xyz}
757 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 3.14e+9
758 } {abc: 1 1 (3.1e+09) :xyz}
760 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 3.14e+9
761 } {abc: 1 1 (3e+09) :xyz}
763 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 -4.72732e+88
764 } {abc: (-4.7e+88) :xyz}
766 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 -4.72732e+88
767 } {abc: (-5e+88) :xyz}
769 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 -4.72732e+88
770 } {abc: 1 1 (-4.72732e+88) :xyz}
772 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 -4.72732e+88
773 } {abc: 1 1 (-4.72732e+88) :xyz}
775 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 -4.72732e+88
776 } {abc: 1 1 (-4.72732e+88) :xyz}
778 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 -4.72732e+88
779 } {abc: 1 1 (-4.7e+88) :xyz}
781 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 -4.72732e+88
782 } {abc: 1 1 (-5e+88) :xyz}
784 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 9.87991e+143
785 } {abc: (9.9e+143) :xyz}
787 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 9.87991e+143
788 } {abc: (1e+144) :xyz}
790 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 9.87991e+143
791 } {abc: 1 1 (9.87991e+143) :xyz}
793 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 9.87991e+143
794 } {abc: 1 1 (9.87991e+143) :xyz}
796 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 9.87991e+143
797 } {abc: 1 1 (9.87991e+143) :xyz}
799 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 9.87991e+143
800 } {abc: 1 1 (9.9e+143) :xyz}
802 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 9.87991e+143
803 } {abc: 1 1 (1e+144) :xyz}
805 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 -6.287291e-9
806 } {abc: (-0.0) :xyz}
808 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 -6.287291e-9
809 } {abc: (-6.3e-09) :xyz}
811 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 -6.287291e-9
812 } {abc: (-6e-09) :xyz}
814 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 -6.287291e-9
815 } {abc: 1 1 (-6.28729e-09) :xyz}
817 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 -6.287291e-9
818 } {abc: 1 1 (-6.28729e-09) :xyz}
820 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 -6.287291e-9
821 } {abc: 1 1 (-6.28729e-09) :xyz}
823 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 -6.287291e-9
824 } {abc: 1 1 (-0.0) :xyz}
826 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 -6.287291e-9
827 } {abc: 1 1 (-6.3e-09) :xyz}
829 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 -6.287291e-9
830 } {abc: 1 1 (-6e-09) :xyz}
832 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 1 1 3.38826392e-110
833 } {abc: (0.0) :xyz}
835 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 1 1 3.38826392e-110
836 } {abc: (3.4e-110) :xyz}
838 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 1 1 3.38826392e-110
839 } {abc: (3e-110) :xyz}
841 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 1 1 3.38826392e-110
842 } {abc: 1 1 (3.38826e-110) :xyz}
844 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 1 1 3.38826392e-110
845 } {abc: 1 1 (3.38826e-110) :xyz}
847 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 1 1 3.38826392e-110
848 } {abc: 1 1 (3.38826e-110) :xyz}
850 sqlite3_mprintf_double {abc: %d %d (%1.1f) :xyz} 1 1 3.38826392e-110
851 } {abc: 1 1 (0.0) :xyz}
853 sqlite3_mprintf_double {abc: %d %d (%1.1e) :xyz} 1 1 3.38826392e-110
854 } {abc: 1 1 (3.4e-110) :xyz}
856 sqlite3_mprintf_double {abc: %d %d (%1.1g) :xyz} 1 1 3.38826392e-110
857 } {abc: 1 1 (3e-110) :xyz}
859 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 0.001
860 } {abc: (0.00100) :xyz}
862 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 0.001
863 } {abc: (1.00000e-03) :xyz}
865 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 0.001
866 } {abc: (0.001) :xyz}
868 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 0.001
869 } {abc: 5 5 (0.001) :xyz}
871 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 0.001
872 } {abc: 5 5 (0.00100000) :xyz}
874 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 0.001
875 } {abc: 5 5 (000000.001) :xyz}
877 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 0.001
878 } {abc: 5 5 (0.00100) :xyz}
880 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 0.001
881 } {abc: 5 5 (1.00000e-03) :xyz}
883 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 0.001
884 } {abc: 5 5 (0.001) :xyz}
886 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 1.0e-20
887 } {abc: (0.00000) :xyz}
889 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 1.0e-20
890 } {abc: (1.00000e-20) :xyz}
892 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 1.0e-20
893 } {abc: (1e-20) :xyz}
895 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 1.0e-20
896 } {abc: 5 5 (1e-20) :xyz}
898 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 1.0e-20
899 } {abc: 5 5 (1.00000e-20) :xyz}
901 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 1.0e-20
902 } {abc: 5 5 (000001e-20) :xyz}
904 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 1.0e-20
905 } {abc: 5 5 (0.00000) :xyz}
907 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 1.0e-20
908 } {abc: 5 5 (1.00000e-20) :xyz}
910 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 1.0e-20
911 } {abc: 5 5 (1e-20) :xyz}
913 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 1.0
914 } {abc: (1.00000) :xyz}
916 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 1.0
917 } {abc: (1.00000e+00) :xyz}
919 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 1.0
920 } {abc: ( 1) :xyz}
922 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 1.0
923 } {abc: 5 5 (1) :xyz}
925 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 1.0
926 } {abc: 5 5 (1.00000) :xyz}
928 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 1.0
929 } {abc: 5 5 (0000000001) :xyz}
931 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 1.0
932 } {abc: 5 5 (1.00000) :xyz}
934 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 1.0
935 } {abc: 5 5 (1.00000e+00) :xyz}
937 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 1.0
938 } {abc: 5 5 ( 1) :xyz}
940 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 0.0
941 } {abc: (0.00000) :xyz}
943 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 0.0
944 } {abc: (0.00000e+00) :xyz}
946 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 0.0
947 } {abc: ( 0) :xyz}
949 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 0.0
950 } {abc: 5 5 (0) :xyz}
952 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 0.0
953 } {abc: 5 5 (0.00000) :xyz}
955 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 0.0
956 } {abc: 5 5 (0000000000) :xyz}
958 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 0.0
959 } {abc: 5 5 (0.00000) :xyz}
961 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 0.0
962 } {abc: 5 5 (0.00000e+00) :xyz}
964 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 0.0
965 } {abc: 5 5 ( 0) :xyz}
967 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 100.0
968 } {abc: (100.00000) :xyz}
970 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 100.0
971 } {abc: (1.00000e+02) :xyz}
973 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 100.0
974 } {abc: ( 100) :xyz}
976 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 100.0
977 } {abc: 5 5 (100) :xyz}
979 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 100.0
980 } {abc: 5 5 (100.000) :xyz}
982 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 100.0
983 } {abc: 5 5 (0000000100) :xyz}
985 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 100.0
986 } {abc: 5 5 (100.00000) :xyz}
988 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 100.0
989 } {abc: 5 5 (1.00000e+02) :xyz}
991 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 100.0
992 } {abc: 5 5 ( 100) :xyz}
994 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 9.99999
995 } {abc: (9.99999) :xyz}
997 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 9.99999
998 } {abc: (9.99999e+00) :xyz}
1000 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 9.99999
1001 } {abc: ( 10) :xyz}
1003 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 9.99999
1004 } {abc: 5 5 (9.99999) :xyz}
1006 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 9.99999
1007 } {abc: 5 5 (9.99999) :xyz}
1009 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 9.99999
1010 } {abc: 5 5 (0009.99999) :xyz}
1012 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 9.99999
1013 } {abc: 5 5 (9.99999) :xyz}
1015 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 9.99999
1016 } {abc: 5 5 (9.99999e+00) :xyz}
1018 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 9.99999
1019 } {abc: 5 5 ( 10) :xyz}
1021 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 -0.00543
1022 } {abc: (-0.00543) :xyz}
1024 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 -0.00543
1025 } {abc: (-5.43000e-03) :xyz}
1027 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 -0.00543
1028 } {abc: (-0.00543) :xyz}
1030 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 -0.00543
1031 } {abc: 5 5 (-0.00543) :xyz}
1033 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 -0.00543
1034 } {abc: 5 5 (-0.00543000) :xyz}
1036 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 -0.00543
1037 } {abc: 5 5 (-000.00543) :xyz}
1039 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 -0.00543
1040 } {abc: 5 5 (-0.00543) :xyz}
1042 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 -0.00543
1043 } {abc: 5 5 (-5.43000e-03) :xyz}
1045 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 -0.00543
1046 } {abc: 5 5 (-0.00543) :xyz}
1048 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 -1.0
1049 } {abc: (-1.00000) :xyz}
1051 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 -1.0
1052 } {abc: (-1.00000e+00) :xyz}
1054 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 -1.0
1055 } {abc: ( -1) :xyz}
1057 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 -1.0
1058 } {abc: 5 5 (-1) :xyz}
1060 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 -1.0
1061 } {abc: 5 5 (-1.00000) :xyz}
1063 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 -1.0
1064 } {abc: 5 5 (-000000001) :xyz}
1066 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 -1.0
1067 } {abc: 5 5 (-1.00000) :xyz}
1069 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 -1.0
1070 } {abc: 5 5 (-1.00000e+00) :xyz}
1072 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 -1.0
1073 } {abc: 5 5 ( -1) :xyz}
1075 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 -99.99999
1076 } {abc: (-99.99999) :xyz}
1078 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 -99.99999
1079 } {abc: (-1.00000e+02) :xyz}
1081 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 -99.99999
1082 } {abc: ( -100) :xyz}
1084 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 -99.99999
1085 } {abc: 5 5 (-100) :xyz}
1087 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 -99.99999
1088 } {abc: 5 5 (-100.000) :xyz}
1090 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 -99.99999
1091 } {abc: 5 5 (-000000100) :xyz}
1093 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 -99.99999
1094 } {abc: 5 5 (-99.99999) :xyz}
1096 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 -99.99999
1097 } {abc: 5 5 (-1.00000e+02) :xyz}
1099 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 -99.99999
1100 } {abc: 5 5 ( -100) :xyz}
1102 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 3.14e+9
1103 } {abc: (3140000000.00000) :xyz}
1105 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 3.14e+9
1106 } {abc: (3.14000e+09) :xyz}
1108 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 3.14e+9
1109 } {abc: (3.14e+09) :xyz}
1111 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 3.14e+9
1112 } {abc: 5 5 (3.14e+09) :xyz}
1114 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 3.14e+9
1115 } {abc: 5 5 (3.14000e+09) :xyz}
1117 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 3.14e+9
1118 } {abc: 5 5 (003.14e+09) :xyz}
1120 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 3.14e+9
1121 } {abc: 5 5 (3140000000.00000) :xyz}
1123 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 3.14e+9
1124 } {abc: 5 5 (3.14000e+09) :xyz}
1126 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 3.14e+9
1127 } {abc: 5 5 (3.14e+09) :xyz}
1129 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 -4.72732e+88
1130 } {abc: (-4.72732e+88) :xyz}
1132 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 -4.72732e+88
1133 } {abc: (-4.7273e+88) :xyz}
1135 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 -4.72732e+88
1136 } {abc: 5 5 (-4.72732e+88) :xyz}
1138 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 -4.72732e+88
1139 } {abc: 5 5 (-4.72732e+88) :xyz}
1141 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 -4.72732e+88
1142 } {abc: 5 5 (-4.72732e+88) :xyz}
1144 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 -4.72732e+88
1145 } {abc: 5 5 (-4.72732e+88) :xyz}
1147 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 -4.72732e+88
1148 } {abc: 5 5 (-4.7273e+88) :xyz}
1150 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 9.87991e+143
1151 } {abc: (9.87991e+143) :xyz}
1153 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 9.87991e+143
1154 } {abc: (9.8799e+143) :xyz}
1156 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 9.87991e+143
1157 } {abc: 5 5 (9.87991e+143) :xyz}
1159 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 9.87991e+143
1160 } {abc: 5 5 (9.87991e+143) :xyz}
1162 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 9.87991e+143
1163 } {abc: 5 5 (9.87991e+143) :xyz}
1165 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 9.87991e+143
1166 } {abc: 5 5 (9.87991e+143) :xyz}
1168 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 9.87991e+143
1169 } {abc: 5 5 (9.8799e+143) :xyz}
1171 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 -6.287291e-9
1172 } {abc: (-0.00000) :xyz}
1174 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 -6.287291e-9
1175 } {abc: (-6.28729e-09) :xyz}
1177 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 -6.287291e-9
1178 } {abc: (-6.2873e-09) :xyz}
1180 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 -6.287291e-9
1181 } {abc: 5 5 (-6.28729e-09) :xyz}
1183 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 -6.287291e-9
1184 } {abc: 5 5 (-6.28729e-09) :xyz}
1186 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 -6.287291e-9
1187 } {abc: 5 5 (-6.28729e-09) :xyz}
1189 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 -6.287291e-9
1190 } {abc: 5 5 (-0.00000) :xyz}
1192 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 -6.287291e-9
1193 } {abc: 5 5 (-6.28729e-09) :xyz}
1195 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 -6.287291e-9
1196 } {abc: 5 5 (-6.2873e-09) :xyz}
1198 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 5 5 3.38826392e-110
1199 } {abc: (0.00000) :xyz}
1201 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 5 5 3.38826392e-110
1202 } {abc: (3.38826e-110) :xyz}
1204 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 5 5 3.38826392e-110
1205 } {abc: (3.3883e-110) :xyz}
1207 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 5 5 3.38826392e-110
1208 } {abc: 5 5 (3.38826e-110) :xyz}
1210 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 5 5 3.38826392e-110
1211 } {abc: 5 5 (3.38826e-110) :xyz}
1213 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 5 5 3.38826392e-110
1214 } {abc: 5 5 (3.38826e-110) :xyz}
1216 sqlite3_mprintf_double {abc: %d %d (%5.5f) :xyz} 5 5 3.38826392e-110
1217 } {abc: 5 5 (0.00000) :xyz}
1219 sqlite3_mprintf_double {abc: %d %d (%5.5e) :xyz} 5 5 3.38826392e-110
1220 } {abc: 5 5 (3.38826e-110) :xyz}
1222 sqlite3_mprintf_double {abc: %d %d (%5.5g) :xyz} 5 5 3.38826392e-110
1223 } {abc: 5 5 (3.3883e-110) :xyz}
1225 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 0.001
1226 } {abc: (0.0010000000) :xyz}
1228 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 0.001
1229 } {abc: (1.0000000000e-03) :xyz}
1231 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 0.001
1232 } {abc: ( 0.001) :xyz}
1234 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 0.001
1235 } {abc: 10 10 (0.001) :xyz}
1237 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 0.001
1238 } {abc: 10 10 (0.00100000) :xyz}
1240 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 0.001
1241 } {abc: 10 10 (000000.001) :xyz}
1243 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 0.001
1244 } {abc: 10 10 (0.0010000000) :xyz}
1246 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 0.001
1247 } {abc: 10 10 (1.0000000000e-03) :xyz}
1249 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 0.001
1250 } {abc: 10 10 ( 0.001) :xyz}
1252 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 1.0e-20
1253 } {abc: (0.0000000000) :xyz}
1255 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 1.0e-20
1256 } {abc: (1.0000000000e-20) :xyz}
1258 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 1.0e-20
1259 } {abc: ( 1e-20) :xyz}
1261 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 1.0e-20
1262 } {abc: 10 10 (1e-20) :xyz}
1264 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 1.0e-20
1265 } {abc: 10 10 (1.00000e-20) :xyz}
1267 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 1.0e-20
1268 } {abc: 10 10 (000001e-20) :xyz}
1270 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 1.0e-20
1271 } {abc: 10 10 (0.0000000000) :xyz}
1273 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 1.0e-20
1274 } {abc: 10 10 (1.0000000000e-20) :xyz}
1276 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 1.0e-20
1277 } {abc: 10 10 ( 1e-20) :xyz}
1279 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 1.0
1280 } {abc: (1.0000000000) :xyz}
1282 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 1.0
1283 } {abc: (1.0000000000e+00) :xyz}
1285 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 1.0
1286 } {abc: ( 1) :xyz}
1288 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 1.0
1289 } {abc: 10 10 (1) :xyz}
1291 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 1.0
1292 } {abc: 10 10 (1.00000) :xyz}
1294 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 1.0
1295 } {abc: 10 10 (0000000001) :xyz}
1297 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 1.0
1298 } {abc: 10 10 (1.0000000000) :xyz}
1300 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 1.0
1301 } {abc: 10 10 (1.0000000000e+00) :xyz}
1303 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 1.0
1304 } {abc: 10 10 ( 1) :xyz}
1306 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 0.0
1307 } {abc: (0.0000000000) :xyz}
1309 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 0.0
1310 } {abc: (0.0000000000e+00) :xyz}
1312 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 0.0
1313 } {abc: ( 0) :xyz}
1315 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 0.0
1316 } {abc: 10 10 (0) :xyz}
1318 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 0.0
1319 } {abc: 10 10 (0.00000) :xyz}
1321 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 0.0
1322 } {abc: 10 10 (0000000000) :xyz}
1324 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 0.0
1325 } {abc: 10 10 (0.0000000000) :xyz}
1327 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 0.0
1328 } {abc: 10 10 (0.0000000000e+00) :xyz}
1330 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 0.0
1331 } {abc: 10 10 ( 0) :xyz}
1333 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 100.0
1334 } {abc: (100.0000000000) :xyz}
1336 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 100.0
1337 } {abc: (1.0000000000e+02) :xyz}
1339 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 100.0
1340 } {abc: ( 100) :xyz}
1342 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 100.0
1343 } {abc: 10 10 (100) :xyz}
1345 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 100.0
1346 } {abc: 10 10 (100.000) :xyz}
1348 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 100.0
1349 } {abc: 10 10 (0000000100) :xyz}
1351 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 100.0
1352 } {abc: 10 10 (100.0000000000) :xyz}
1354 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 100.0
1355 } {abc: 10 10 (1.0000000000e+02) :xyz}
1357 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 100.0
1358 } {abc: 10 10 ( 100) :xyz}
1360 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 9.99999
1361 } {abc: (9.9999900000) :xyz}
1363 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 9.99999
1364 } {abc: (9.9999900000e+00) :xyz}
1366 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 9.99999
1367 } {abc: ( 9.99999) :xyz}
1369 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 9.99999
1370 } {abc: 10 10 (9.99999) :xyz}
1372 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 9.99999
1373 } {abc: 10 10 (9.99999) :xyz}
1375 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 9.99999
1376 } {abc: 10 10 (0009.99999) :xyz}
1378 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 9.99999
1379 } {abc: 10 10 (9.9999900000) :xyz}
1381 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 9.99999
1382 } {abc: 10 10 (9.9999900000e+00) :xyz}
1384 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 9.99999
1385 } {abc: 10 10 ( 9.99999) :xyz}
1387 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 -0.00543
1388 } {abc: (-0.0054300000) :xyz}
1390 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 -0.00543
1391 } {abc: (-5.4300000000e-03) :xyz}
1393 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 -0.00543
1394 } {abc: ( -0.00543) :xyz}
1396 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 -0.00543
1397 } {abc: 10 10 (-0.00543) :xyz}
1399 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 -0.00543
1400 } {abc: 10 10 (-0.00543000) :xyz}
1402 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 -0.00543
1403 } {abc: 10 10 (-000.00543) :xyz}
1405 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 -0.00543
1406 } {abc: 10 10 (-0.0054300000) :xyz}
1408 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 -0.00543
1409 } {abc: 10 10 (-5.4300000000e-03) :xyz}
1411 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 -0.00543
1412 } {abc: 10 10 ( -0.00543) :xyz}
1414 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 -1.0
1415 } {abc: (-1.0000000000) :xyz}
1417 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 -1.0
1418 } {abc: (-1.0000000000e+00) :xyz}
1420 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 -1.0
1421 } {abc: ( -1) :xyz}
1423 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 -1.0
1424 } {abc: 10 10 (-1) :xyz}
1426 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 -1.0
1427 } {abc: 10 10 (-1.00000) :xyz}
1429 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 -1.0
1430 } {abc: 10 10 (-000000001) :xyz}
1432 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 -1.0
1433 } {abc: 10 10 (-1.0000000000) :xyz}
1435 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 -1.0
1436 } {abc: 10 10 (-1.0000000000e+00) :xyz}
1438 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 -1.0
1439 } {abc: 10 10 ( -1) :xyz}
1441 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 -99.99999
1442 } {abc: (-99.9999900000) :xyz}
1444 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 -99.99999
1445 } {abc: (-9.9999990000e+01) :xyz}
1447 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 -99.99999
1448 } {abc: ( -99.99999) :xyz}
1450 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 -99.99999
1451 } {abc: 10 10 (-100) :xyz}
1453 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 -99.99999
1454 } {abc: 10 10 (-100.000) :xyz}
1456 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 -99.99999
1457 } {abc: 10 10 (-000000100) :xyz}
1459 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 -99.99999
1460 } {abc: 10 10 (-99.9999900000) :xyz}
1462 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 -99.99999
1463 } {abc: 10 10 (-9.9999990000e+01) :xyz}
1465 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 -99.99999
1466 } {abc: 10 10 ( -99.99999) :xyz}
1468 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 3.14e+9
1469 } {abc: (3140000000.0000000000) :xyz}
1471 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 3.14e+9
1472 } {abc: (3.1400000000e+09) :xyz}
1474 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 3.14e+9
1475 } {abc: (3140000000) :xyz}
1477 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 3.14e+9
1478 } {abc: 10 10 (3.14e+09) :xyz}
1480 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 3.14e+9
1481 } {abc: 10 10 (3.14000e+09) :xyz}
1483 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 3.14e+9
1484 } {abc: 10 10 (003.14e+09) :xyz}
1486 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 3.14e+9
1487 } {abc: 10 10 (3140000000.0000000000) :xyz}
1489 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 3.14e+9
1490 } {abc: 10 10 (3.1400000000e+09) :xyz}
1492 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 3.14e+9
1493 } {abc: 10 10 (3140000000) :xyz}
1495 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 -4.72732e+88
1496 } {abc: (-4.7273200000e+88) :xyz}
1498 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 -4.72732e+88
1499 } {abc: (-4.72732e+88) :xyz}
1501 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 -4.72732e+88
1502 } {abc: 10 10 (-4.72732e+88) :xyz}
1504 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 -4.72732e+88
1505 } {abc: 10 10 (-4.72732e+88) :xyz}
1507 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 -4.72732e+88
1508 } {abc: 10 10 (-4.72732e+88) :xyz}
1510 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 -4.72732e+88
1511 } {abc: 10 10 (-4.7273200000e+88) :xyz}
1513 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 -4.72732e+88
1514 } {abc: 10 10 (-4.72732e+88) :xyz}
1516 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 9.87991e+143
1517 } {abc: (9.8799100000e+143) :xyz}
1519 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 9.87991e+143
1520 } {abc: (9.87991e+143) :xyz}
1522 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 9.87991e+143
1523 } {abc: 10 10 (9.87991e+143) :xyz}
1525 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 9.87991e+143
1526 } {abc: 10 10 (9.87991e+143) :xyz}
1528 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 9.87991e+143
1529 } {abc: 10 10 (9.87991e+143) :xyz}
1531 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 9.87991e+143
1532 } {abc: 10 10 (9.8799100000e+143) :xyz}
1534 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 9.87991e+143
1535 } {abc: 10 10 (9.87991e+143) :xyz}
1537 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 -6.287291e-9
1538 } {abc: (-0.0000000063) :xyz}
1540 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 -6.287291e-9
1541 } {abc: (-6.2872910000e-09) :xyz}
1543 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 -6.287291e-9
1544 } {abc: (-6.287291e-09) :xyz}
1546 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 -6.287291e-9
1547 } {abc: 10 10 (-6.28729e-09) :xyz}
1549 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 -6.287291e-9
1550 } {abc: 10 10 (-6.28729e-09) :xyz}
1552 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 -6.287291e-9
1553 } {abc: 10 10 (-6.28729e-09) :xyz}
1555 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 -6.287291e-9
1556 } {abc: 10 10 (-0.0000000063) :xyz}
1558 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 -6.287291e-9
1559 } {abc: 10 10 (-6.2872910000e-09) :xyz}
1561 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 -6.287291e-9
1562 } {abc: 10 10 (-6.287291e-09) :xyz}
1564 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 10 3.38826392e-110
1565 } {abc: (0.0000000000) :xyz}
1567 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 10 3.38826392e-110
1568 } {abc: (3.3882639200e-110) :xyz}
1570 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 10 3.38826392e-110
1571 } {abc: (3.38826392e-110) :xyz}
1573 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 10 3.38826392e-110
1574 } {abc: 10 10 (3.38826e-110) :xyz}
1576 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 10 3.38826392e-110
1577 } {abc: 10 10 (3.38826e-110) :xyz}
1579 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 10 3.38826392e-110
1580 } {abc: 10 10 (3.38826e-110) :xyz}
1582 sqlite3_mprintf_double {abc: %d %d (%10.10f) :xyz} 10 10 3.38826392e-110
1583 } {abc: 10 10 (0.0000000000) :xyz}
1585 sqlite3_mprintf_double {abc: %d %d (%10.10e) :xyz} 10 10 3.38826392e-110
1586 } {abc: 10 10 (3.3882639200e-110) :xyz}
1588 sqlite3_mprintf_double {abc: %d %d (%10.10g) :xyz} 10 10 3.38826392e-110
1589 } {abc: 10 10 (3.38826392e-110) :xyz}
1591 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 0.001
1592 } {abc: ( 0.00100) :xyz}
1594 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 0.001
1595 } {abc: (1.00000e-03) :xyz}
1597 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 0.001
1598 } {abc: ( 0.001) :xyz}
1600 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 0.001
1601 } {abc: 10 5 (0.001) :xyz}
1603 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 0.001
1604 } {abc: 10 5 (0.00100000) :xyz}
1606 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 0.001
1607 } {abc: 10 5 (000000.001) :xyz}
1609 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 0.001
1610 } {abc: 10 5 ( 0.00100) :xyz}
1612 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 0.001
1613 } {abc: 10 5 (1.00000e-03) :xyz}
1615 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 0.001
1616 } {abc: 10 5 ( 0.001) :xyz}
1618 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 1.0e-20
1619 } {abc: ( 0.00000) :xyz}
1621 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 1.0e-20
1622 } {abc: (1.00000e-20) :xyz}
1624 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 1.0e-20
1625 } {abc: ( 1e-20) :xyz}
1627 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 1.0e-20
1628 } {abc: 10 5 (1e-20) :xyz}
1630 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 1.0e-20
1631 } {abc: 10 5 (1.00000e-20) :xyz}
1633 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 1.0e-20
1634 } {abc: 10 5 (000001e-20) :xyz}
1636 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 1.0e-20
1637 } {abc: 10 5 ( 0.00000) :xyz}
1639 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 1.0e-20
1640 } {abc: 10 5 (1.00000e-20) :xyz}
1642 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 1.0e-20
1643 } {abc: 10 5 ( 1e-20) :xyz}
1645 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 1.0
1646 } {abc: ( 1.00000) :xyz}
1648 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 1.0
1649 } {abc: (1.00000e+00) :xyz}
1651 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 1.0
1652 } {abc: ( 1) :xyz}
1654 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 1.0
1655 } {abc: 10 5 (1) :xyz}
1657 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 1.0
1658 } {abc: 10 5 (1.00000) :xyz}
1660 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 1.0
1661 } {abc: 10 5 (0000000001) :xyz}
1663 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 1.0
1664 } {abc: 10 5 ( 1.00000) :xyz}
1666 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 1.0
1667 } {abc: 10 5 (1.00000e+00) :xyz}
1669 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 1.0
1670 } {abc: 10 5 ( 1) :xyz}
1672 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 0.0
1673 } {abc: ( 0.00000) :xyz}
1675 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 0.0
1676 } {abc: (0.00000e+00) :xyz}
1678 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 0.0
1679 } {abc: ( 0) :xyz}
1681 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 0.0
1682 } {abc: 10 5 (0) :xyz}
1684 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 0.0
1685 } {abc: 10 5 (0.00000) :xyz}
1687 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 0.0
1688 } {abc: 10 5 (0000000000) :xyz}
1690 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 0.0
1691 } {abc: 10 5 ( 0.00000) :xyz}
1693 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 0.0
1694 } {abc: 10 5 (0.00000e+00) :xyz}
1696 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 0.0
1697 } {abc: 10 5 ( 0) :xyz}
1699 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 100.0
1700 } {abc: ( 100.00000) :xyz}
1702 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 100.0
1703 } {abc: (1.00000e+02) :xyz}
1705 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 100.0
1706 } {abc: ( 100) :xyz}
1708 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 100.0
1709 } {abc: 10 5 (100) :xyz}
1711 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 100.0
1712 } {abc: 10 5 (100.000) :xyz}
1714 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 100.0
1715 } {abc: 10 5 (0000000100) :xyz}
1717 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 100.0
1718 } {abc: 10 5 ( 100.00000) :xyz}
1720 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 100.0
1721 } {abc: 10 5 (1.00000e+02) :xyz}
1723 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 100.0
1724 } {abc: 10 5 ( 100) :xyz}
1726 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 9.99999
1727 } {abc: ( 9.99999) :xyz}
1729 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 9.99999
1730 } {abc: (9.99999e+00) :xyz}
1732 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 9.99999
1733 } {abc: ( 10) :xyz}
1735 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 9.99999
1736 } {abc: 10 5 (9.99999) :xyz}
1738 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 9.99999
1739 } {abc: 10 5 (9.99999) :xyz}
1741 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 9.99999
1742 } {abc: 10 5 (0009.99999) :xyz}
1744 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 9.99999
1745 } {abc: 10 5 ( 9.99999) :xyz}
1747 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 9.99999
1748 } {abc: 10 5 (9.99999e+00) :xyz}
1750 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 9.99999
1751 } {abc: 10 5 ( 10) :xyz}
1753 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 -0.00543
1754 } {abc: ( -0.00543) :xyz}
1756 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 -0.00543
1757 } {abc: (-5.43000e-03) :xyz}
1759 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 -0.00543
1760 } {abc: ( -0.00543) :xyz}
1762 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 -0.00543
1763 } {abc: 10 5 (-0.00543) :xyz}
1765 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 -0.00543
1766 } {abc: 10 5 (-0.00543000) :xyz}
1768 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 -0.00543
1769 } {abc: 10 5 (-000.00543) :xyz}
1771 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 -0.00543
1772 } {abc: 10 5 ( -0.00543) :xyz}
1774 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 -0.00543
1775 } {abc: 10 5 (-5.43000e-03) :xyz}
1777 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 -0.00543
1778 } {abc: 10 5 ( -0.00543) :xyz}
1780 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 -1.0
1781 } {abc: ( -1.00000) :xyz}
1783 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 -1.0
1784 } {abc: (-1.00000e+00) :xyz}
1786 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 -1.0
1787 } {abc: ( -1) :xyz}
1789 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 -1.0
1790 } {abc: 10 5 (-1) :xyz}
1792 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 -1.0
1793 } {abc: 10 5 (-1.00000) :xyz}
1795 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 -1.0
1796 } {abc: 10 5 (-000000001) :xyz}
1798 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 -1.0
1799 } {abc: 10 5 ( -1.00000) :xyz}
1801 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 -1.0
1802 } {abc: 10 5 (-1.00000e+00) :xyz}
1804 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 -1.0
1805 } {abc: 10 5 ( -1) :xyz}
1807 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 -99.99999
1808 } {abc: ( -99.99999) :xyz}
1810 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 -99.99999
1811 } {abc: (-1.00000e+02) :xyz}
1813 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 -99.99999
1814 } {abc: ( -100) :xyz}
1816 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 -99.99999
1817 } {abc: 10 5 (-100) :xyz}
1819 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 -99.99999
1820 } {abc: 10 5 (-100.000) :xyz}
1822 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 -99.99999
1823 } {abc: 10 5 (-000000100) :xyz}
1825 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 -99.99999
1826 } {abc: 10 5 ( -99.99999) :xyz}
1828 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 -99.99999
1829 } {abc: 10 5 (-1.00000e+02) :xyz}
1831 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 -99.99999
1832 } {abc: 10 5 ( -100) :xyz}
1834 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 3.14e+9
1835 } {abc: (3140000000.00000) :xyz}
1837 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 3.14e+9
1838 } {abc: (3.14000e+09) :xyz}
1840 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 3.14e+9
1841 } {abc: ( 3.14e+09) :xyz}
1843 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 3.14e+9
1844 } {abc: 10 5 (3.14e+09) :xyz}
1846 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 3.14e+9
1847 } {abc: 10 5 (3.14000e+09) :xyz}
1849 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 3.14e+9
1850 } {abc: 10 5 (003.14e+09) :xyz}
1852 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 3.14e+9
1853 } {abc: 10 5 (3140000000.00000) :xyz}
1855 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 3.14e+9
1856 } {abc: 10 5 (3.14000e+09) :xyz}
1858 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 3.14e+9
1859 } {abc: 10 5 ( 3.14e+09) :xyz}
1861 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 -4.72732e+88
1862 } {abc: (-4.72732e+88) :xyz}
1864 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 -4.72732e+88
1865 } {abc: (-4.7273e+88) :xyz}
1867 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 -4.72732e+88
1868 } {abc: 10 5 (-4.72732e+88) :xyz}
1870 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 -4.72732e+88
1871 } {abc: 10 5 (-4.72732e+88) :xyz}
1873 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 -4.72732e+88
1874 } {abc: 10 5 (-4.72732e+88) :xyz}
1876 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 -4.72732e+88
1877 } {abc: 10 5 (-4.72732e+88) :xyz}
1879 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 -4.72732e+88
1880 } {abc: 10 5 (-4.7273e+88) :xyz}
1882 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 9.87991e+143
1883 } {abc: (9.87991e+143) :xyz}
1885 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 9.87991e+143
1886 } {abc: (9.8799e+143) :xyz}
1888 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 9.87991e+143
1889 } {abc: 10 5 (9.87991e+143) :xyz}
1891 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 9.87991e+143
1892 } {abc: 10 5 (9.87991e+143) :xyz}
1894 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 9.87991e+143
1895 } {abc: 10 5 (9.87991e+143) :xyz}
1897 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 9.87991e+143
1898 } {abc: 10 5 (9.87991e+143) :xyz}
1900 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 9.87991e+143
1901 } {abc: 10 5 (9.8799e+143) :xyz}
1903 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 -6.287291e-9
1904 } {abc: ( -0.00000) :xyz}
1906 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 -6.287291e-9
1907 } {abc: (-6.28729e-09) :xyz}
1909 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 -6.287291e-9
1910 } {abc: (-6.2873e-09) :xyz}
1912 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 -6.287291e-9
1913 } {abc: 10 5 (-6.28729e-09) :xyz}
1915 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 -6.287291e-9
1916 } {abc: 10 5 (-6.28729e-09) :xyz}
1918 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 -6.287291e-9
1919 } {abc: 10 5 (-6.28729e-09) :xyz}
1921 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 -6.287291e-9
1922 } {abc: 10 5 ( -0.00000) :xyz}
1924 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 -6.287291e-9
1925 } {abc: 10 5 (-6.28729e-09) :xyz}
1927 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 -6.287291e-9
1928 } {abc: 10 5 (-6.2873e-09) :xyz}
1930 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 10 5 3.38826392e-110
1931 } {abc: ( 0.00000) :xyz}
1933 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 10 5 3.38826392e-110
1934 } {abc: (3.38826e-110) :xyz}
1936 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 10 5 3.38826392e-110
1937 } {abc: (3.3883e-110) :xyz}
1939 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 10 5 3.38826392e-110
1940 } {abc: 10 5 (3.38826e-110) :xyz}
1942 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 10 5 3.38826392e-110
1943 } {abc: 10 5 (3.38826e-110) :xyz}
1945 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 10 5 3.38826392e-110
1946 } {abc: 10 5 (3.38826e-110) :xyz}
1948 sqlite3_mprintf_double {abc: %d %d (%10.5f) :xyz} 10 5 3.38826392e-110
1949 } {abc: 10 5 ( 0.00000) :xyz}
1951 sqlite3_mprintf_double {abc: %d %d (%10.5e) :xyz} 10 5 3.38826392e-110
1952 } {abc: 10 5 (3.38826e-110) :xyz}
1954 sqlite3_mprintf_double {abc: %d %d (%10.5g) :xyz} 10 5 3.38826392e-110
1955 } {abc: 10 5 (3.3883e-110) :xyz}
1957 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 0.001
1958 } {abc: (0.00) :xyz}
1960 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 0.001
1961 } {abc: (1.00e-03) :xyz}
1963 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 0.001
1964 } {abc: (0.001) :xyz}
1966 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 0.001
1967 } {abc: 2 2 (0.001) :xyz}
1969 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 0.001
1970 } {abc: 2 2 (0.00100000) :xyz}
1972 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 0.001
1973 } {abc: 2 2 (000000.001) :xyz}
1975 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 0.001
1976 } {abc: 2 2 (0.00) :xyz}
1978 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 0.001
1979 } {abc: 2 2 (1.00e-03) :xyz}
1981 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 0.001
1982 } {abc: 2 2 (0.001) :xyz}
1984 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 1.0e-20
1985 } {abc: (0.00) :xyz}
1987 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 1.0e-20
1988 } {abc: (1.00e-20) :xyz}
1990 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 1.0e-20
1991 } {abc: (1e-20) :xyz}
1993 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 1.0e-20
1994 } {abc: 2 2 (1e-20) :xyz}
1996 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 1.0e-20
1997 } {abc: 2 2 (1.00000e-20) :xyz}
1999 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 1.0e-20
2000 } {abc: 2 2 (000001e-20) :xyz}
2002 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 1.0e-20
2003 } {abc: 2 2 (0.00) :xyz}
2005 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 1.0e-20
2006 } {abc: 2 2 (1.00e-20) :xyz}
2008 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 1.0e-20
2009 } {abc: 2 2 (1e-20) :xyz}
2011 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 1.0
2012 } {abc: (1.00) :xyz}
2014 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 1.0
2015 } {abc: (1.00e+00) :xyz}
2017 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 1.0
2018 } {abc: ( 1) :xyz}
2020 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 1.0
2021 } {abc: 2 2 (1) :xyz}
2023 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 1.0
2024 } {abc: 2 2 (1.00000) :xyz}
2026 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 1.0
2027 } {abc: 2 2 (0000000001) :xyz}
2029 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 1.0
2030 } {abc: 2 2 (1.00) :xyz}
2032 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 1.0
2033 } {abc: 2 2 (1.00e+00) :xyz}
2035 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 1.0
2036 } {abc: 2 2 ( 1) :xyz}
2038 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 0.0
2039 } {abc: (0.00) :xyz}
2041 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 0.0
2042 } {abc: (0.00e+00) :xyz}
2044 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 0.0
2045 } {abc: ( 0) :xyz}
2047 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 0.0
2048 } {abc: 2 2 (0) :xyz}
2050 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 0.0
2051 } {abc: 2 2 (0.00000) :xyz}
2053 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 0.0
2054 } {abc: 2 2 (0000000000) :xyz}
2056 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 0.0
2057 } {abc: 2 2 (0.00) :xyz}
2059 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 0.0
2060 } {abc: 2 2 (0.00e+00) :xyz}
2062 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 0.0
2063 } {abc: 2 2 ( 0) :xyz}
2065 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 100.0
2066 } {abc: (100.00) :xyz}
2068 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 100.0
2069 } {abc: (1.00e+02) :xyz}
2071 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 100.0
2072 } {abc: (1e+02) :xyz}
2074 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 100.0
2075 } {abc: 2 2 (100) :xyz}
2077 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 100.0
2078 } {abc: 2 2 (100.000) :xyz}
2080 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 100.0
2081 } {abc: 2 2 (0000000100) :xyz}
2083 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 100.0
2084 } {abc: 2 2 (100.00) :xyz}
2086 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 100.0
2087 } {abc: 2 2 (1.00e+02) :xyz}
2089 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 100.0
2090 } {abc: 2 2 (1e+02) :xyz}
2092 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 9.99999
2093 } {abc: (10.00) :xyz}
2095 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 9.99999
2096 } {abc: (1.00e+01) :xyz}
2098 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 9.99999
2099 } {abc: (10) :xyz}
2101 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 9.99999
2102 } {abc: 2 2 (9.99999) :xyz}
2104 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 9.99999
2105 } {abc: 2 2 (9.99999) :xyz}
2107 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 9.99999
2108 } {abc: 2 2 (0009.99999) :xyz}
2110 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 9.99999
2111 } {abc: 2 2 (10.00) :xyz}
2113 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 9.99999
2114 } {abc: 2 2 (1.00e+01) :xyz}
2116 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 9.99999
2117 } {abc: 2 2 (10) :xyz}
2119 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 -0.00543
2120 } {abc: (-0.01) :xyz}
2122 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 -0.00543
2123 } {abc: (-5.43e-03) :xyz}
2125 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 -0.00543
2126 } {abc: (-0.0054) :xyz}
2128 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 -0.00543
2129 } {abc: 2 2 (-0.00543) :xyz}
2131 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 -0.00543
2132 } {abc: 2 2 (-0.00543000) :xyz}
2134 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 -0.00543
2135 } {abc: 2 2 (-000.00543) :xyz}
2137 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 -0.00543
2138 } {abc: 2 2 (-0.01) :xyz}
2140 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 -0.00543
2141 } {abc: 2 2 (-5.43e-03) :xyz}
2143 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 -0.00543
2144 } {abc: 2 2 (-0.0054) :xyz}
2146 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 -1.0
2147 } {abc: (-1.00) :xyz}
2149 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 -1.0
2150 } {abc: (-1.00e+00) :xyz}
2152 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 -1.0
2153 } {abc: (-1) :xyz}
2155 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 -1.0
2156 } {abc: 2 2 (-1) :xyz}
2158 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 -1.0
2159 } {abc: 2 2 (-1.00000) :xyz}
2161 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 -1.0
2162 } {abc: 2 2 (-000000001) :xyz}
2164 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 -1.0
2165 } {abc: 2 2 (-1.00) :xyz}
2167 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 -1.0
2168 } {abc: 2 2 (-1.00e+00) :xyz}
2170 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 -1.0
2171 } {abc: 2 2 (-1) :xyz}
2173 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 -99.99999
2174 } {abc: (-100.00) :xyz}
2176 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 -99.99999
2177 } {abc: (-1.00e+02) :xyz}
2179 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 -99.99999
2180 } {abc: (-1e+02) :xyz}
2182 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 -99.99999
2183 } {abc: 2 2 (-100) :xyz}
2185 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 -99.99999
2186 } {abc: 2 2 (-100.000) :xyz}
2188 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 -99.99999
2189 } {abc: 2 2 (-000000100) :xyz}
2191 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 -99.99999
2192 } {abc: 2 2 (-100.00) :xyz}
2194 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 -99.99999
2195 } {abc: 2 2 (-1.00e+02) :xyz}
2197 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 -99.99999
2198 } {abc: 2 2 (-1e+02) :xyz}
2200 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 3.14e+9
2201 } {abc: (3140000000.00) :xyz}
2203 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 3.14e+9
2204 } {abc: (3.14e+09) :xyz}
2206 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 3.14e+9
2207 } {abc: (3.1e+09) :xyz}
2209 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 3.14e+9
2210 } {abc: 2 2 (3.14e+09) :xyz}
2212 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 3.14e+9
2213 } {abc: 2 2 (3.14000e+09) :xyz}
2215 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 3.14e+9
2216 } {abc: 2 2 (003.14e+09) :xyz}
2218 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 3.14e+9
2219 } {abc: 2 2 (3140000000.00) :xyz}
2221 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 3.14e+9
2222 } {abc: 2 2 (3.14e+09) :xyz}
2224 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 3.14e+9
2225 } {abc: 2 2 (3.1e+09) :xyz}
2227 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 -4.72732e+88
2228 } {abc: (-4.73e+88) :xyz}
2230 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 -4.72732e+88
2231 } {abc: (-4.7e+88) :xyz}
2233 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 -4.72732e+88
2234 } {abc: 2 2 (-4.72732e+88) :xyz}
2236 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 -4.72732e+88
2237 } {abc: 2 2 (-4.72732e+88) :xyz}
2239 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 -4.72732e+88
2240 } {abc: 2 2 (-4.72732e+88) :xyz}
2242 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 -4.72732e+88
2243 } {abc: 2 2 (-4.73e+88) :xyz}
2245 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 -4.72732e+88
2246 } {abc: 2 2 (-4.7e+88) :xyz}
2248 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 9.87991e+143
2249 } {abc: (9.88e+143) :xyz}
2251 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 9.87991e+143
2252 } {abc: (9.9e+143) :xyz}
2254 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 9.87991e+143
2255 } {abc: 2 2 (9.87991e+143) :xyz}
2257 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 9.87991e+143
2258 } {abc: 2 2 (9.87991e+143) :xyz}
2260 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 9.87991e+143
2261 } {abc: 2 2 (9.87991e+143) :xyz}
2263 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 9.87991e+143
2264 } {abc: 2 2 (9.88e+143) :xyz}
2266 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 9.87991e+143
2267 } {abc: 2 2 (9.9e+143) :xyz}
2269 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 -6.287291e-9
2270 } {abc: (-0.00) :xyz}
2272 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 -6.287291e-9
2273 } {abc: (-6.29e-09) :xyz}
2275 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 -6.287291e-9
2276 } {abc: (-6.3e-09) :xyz}
2278 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 -6.287291e-9
2279 } {abc: 2 2 (-6.28729e-09) :xyz}
2281 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 -6.287291e-9
2282 } {abc: 2 2 (-6.28729e-09) :xyz}
2284 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 -6.287291e-9
2285 } {abc: 2 2 (-6.28729e-09) :xyz}
2287 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 -6.287291e-9
2288 } {abc: 2 2 (-0.00) :xyz}
2290 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 -6.287291e-9
2291 } {abc: 2 2 (-6.29e-09) :xyz}
2293 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 -6.287291e-9
2294 } {abc: 2 2 (-6.3e-09) :xyz}
2296 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 2 3.38826392e-110
2297 } {abc: (0.00) :xyz}
2299 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 2 3.38826392e-110
2300 } {abc: (3.39e-110) :xyz}
2302 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 2 3.38826392e-110
2303 } {abc: (3.4e-110) :xyz}
2305 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 2 3.38826392e-110
2306 } {abc: 2 2 (3.38826e-110) :xyz}
2308 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 2 3.38826392e-110
2309 } {abc: 2 2 (3.38826e-110) :xyz}
2311 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 2 3.38826392e-110
2312 } {abc: 2 2 (3.38826e-110) :xyz}
2314 sqlite3_mprintf_double {abc: %d %d (%2.2f) :xyz} 2 2 3.38826392e-110
2315 } {abc: 2 2 (0.00) :xyz}
2317 sqlite3_mprintf_double {abc: %d %d (%2.2e) :xyz} 2 2 3.38826392e-110
2318 } {abc: 2 2 (3.39e-110) :xyz}
2320 sqlite3_mprintf_double {abc: %d %d (%2.2g) :xyz} 2 2 3.38826392e-110
2321 } {abc: 2 2 (3.4e-110) :xyz}
2323 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 0.001
2324 } {abc: (0.001) :xyz}
2326 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 0.001
2327 } {abc: (1.000e-03) :xyz}
2329 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 0.001
2330 } {abc: (0.001) :xyz}
2332 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 0.001
2333 } {abc: 2 3 (0.001) :xyz}
2335 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 0.001
2336 } {abc: 2 3 (0.00100000) :xyz}
2338 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 0.001
2339 } {abc: 2 3 (000000.001) :xyz}
2341 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 0.001
2342 } {abc: 2 3 (0.001) :xyz}
2344 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 0.001
2345 } {abc: 2 3 (1.000e-03) :xyz}
2347 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 0.001
2348 } {abc: 2 3 (0.001) :xyz}
2350 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 1.0e-20
2351 } {abc: (0.000) :xyz}
2353 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 1.0e-20
2354 } {abc: (1.000e-20) :xyz}
2356 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 1.0e-20
2357 } {abc: (1e-20) :xyz}
2359 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 1.0e-20
2360 } {abc: 2 3 (1e-20) :xyz}
2362 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 1.0e-20
2363 } {abc: 2 3 (1.00000e-20) :xyz}
2365 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 1.0e-20
2366 } {abc: 2 3 (000001e-20) :xyz}
2368 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 1.0e-20
2369 } {abc: 2 3 (0.000) :xyz}
2371 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 1.0e-20
2372 } {abc: 2 3 (1.000e-20) :xyz}
2374 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 1.0e-20
2375 } {abc: 2 3 (1e-20) :xyz}
2377 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 1.0
2378 } {abc: (1.000) :xyz}
2380 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 1.0
2381 } {abc: (1.000e+00) :xyz}
2383 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 1.0
2384 } {abc: ( 1) :xyz}
2386 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 1.0
2387 } {abc: 2 3 (1) :xyz}
2389 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 1.0
2390 } {abc: 2 3 (1.00000) :xyz}
2392 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 1.0
2393 } {abc: 2 3 (0000000001) :xyz}
2395 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 1.0
2396 } {abc: 2 3 (1.000) :xyz}
2398 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 1.0
2399 } {abc: 2 3 (1.000e+00) :xyz}
2401 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 1.0
2402 } {abc: 2 3 ( 1) :xyz}
2404 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 0.0
2405 } {abc: (0.000) :xyz}
2407 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 0.0
2408 } {abc: (0.000e+00) :xyz}
2410 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 0.0
2411 } {abc: ( 0) :xyz}
2413 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 0.0
2414 } {abc: 2 3 (0) :xyz}
2416 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 0.0
2417 } {abc: 2 3 (0.00000) :xyz}
2419 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 0.0
2420 } {abc: 2 3 (0000000000) :xyz}
2422 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 0.0
2423 } {abc: 2 3 (0.000) :xyz}
2425 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 0.0
2426 } {abc: 2 3 (0.000e+00) :xyz}
2428 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 0.0
2429 } {abc: 2 3 ( 0) :xyz}
2431 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 100.0
2432 } {abc: (100.000) :xyz}
2434 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 100.0
2435 } {abc: (1.000e+02) :xyz}
2437 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 100.0
2438 } {abc: (100) :xyz}
2440 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 100.0
2441 } {abc: 2 3 (100) :xyz}
2443 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 100.0
2444 } {abc: 2 3 (100.000) :xyz}
2446 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 100.0
2447 } {abc: 2 3 (0000000100) :xyz}
2449 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 100.0
2450 } {abc: 2 3 (100.000) :xyz}
2452 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 100.0
2453 } {abc: 2 3 (1.000e+02) :xyz}
2455 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 100.0
2456 } {abc: 2 3 (100) :xyz}
2458 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 9.99999
2459 } {abc: (10.000) :xyz}
2461 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 9.99999
2462 } {abc: (1.000e+01) :xyz}
2464 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 9.99999
2465 } {abc: (10) :xyz}
2467 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 9.99999
2468 } {abc: 2 3 (9.99999) :xyz}
2470 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 9.99999
2471 } {abc: 2 3 (9.99999) :xyz}
2473 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 9.99999
2474 } {abc: 2 3 (0009.99999) :xyz}
2476 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 9.99999
2477 } {abc: 2 3 (10.000) :xyz}
2479 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 9.99999
2480 } {abc: 2 3 (1.000e+01) :xyz}
2482 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 9.99999
2483 } {abc: 2 3 (10) :xyz}
2485 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 -0.00543
2486 } {abc: (-0.005) :xyz}
2488 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 -0.00543
2489 } {abc: (-5.430e-03) :xyz}
2491 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 -0.00543
2492 } {abc: (-0.00543) :xyz}
2494 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 -0.00543
2495 } {abc: 2 3 (-0.00543) :xyz}
2497 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 -0.00543
2498 } {abc: 2 3 (-0.00543000) :xyz}
2500 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 -0.00543
2501 } {abc: 2 3 (-000.00543) :xyz}
2503 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 -0.00543
2504 } {abc: 2 3 (-0.005) :xyz}
2506 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 -0.00543
2507 } {abc: 2 3 (-5.430e-03) :xyz}
2509 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 -0.00543
2510 } {abc: 2 3 (-0.00543) :xyz}
2512 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 -1.0
2513 } {abc: (-1.000) :xyz}
2515 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 -1.0
2516 } {abc: (-1.000e+00) :xyz}
2518 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 -1.0
2519 } {abc: (-1) :xyz}
2521 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 -1.0
2522 } {abc: 2 3 (-1) :xyz}
2524 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 -1.0
2525 } {abc: 2 3 (-1.00000) :xyz}
2527 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 -1.0
2528 } {abc: 2 3 (-000000001) :xyz}
2530 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 -1.0
2531 } {abc: 2 3 (-1.000) :xyz}
2533 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 -1.0
2534 } {abc: 2 3 (-1.000e+00) :xyz}
2536 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 -1.0
2537 } {abc: 2 3 (-1) :xyz}
2539 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 -99.99999
2540 } {abc: (-100.000) :xyz}
2542 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 -99.99999
2543 } {abc: (-1.000e+02) :xyz}
2545 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 -99.99999
2546 } {abc: (-100) :xyz}
2548 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 -99.99999
2549 } {abc: 2 3 (-100) :xyz}
2551 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 -99.99999
2552 } {abc: 2 3 (-100.000) :xyz}
2554 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 -99.99999
2555 } {abc: 2 3 (-000000100) :xyz}
2557 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 -99.99999
2558 } {abc: 2 3 (-100.000) :xyz}
2560 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 -99.99999
2561 } {abc: 2 3 (-1.000e+02) :xyz}
2563 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 -99.99999
2564 } {abc: 2 3 (-100) :xyz}
2566 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 3.14e+9
2567 } {abc: (3140000000.000) :xyz}
2569 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 3.14e+9
2570 } {abc: (3.140e+09) :xyz}
2572 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 3.14e+9
2573 } {abc: (3.14e+09) :xyz}
2575 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 3.14e+9
2576 } {abc: 2 3 (3.14e+09) :xyz}
2578 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 3.14e+9
2579 } {abc: 2 3 (3.14000e+09) :xyz}
2581 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 3.14e+9
2582 } {abc: 2 3 (003.14e+09) :xyz}
2584 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 3.14e+9
2585 } {abc: 2 3 (3140000000.000) :xyz}
2587 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 3.14e+9
2588 } {abc: 2 3 (3.140e+09) :xyz}
2590 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 3.14e+9
2591 } {abc: 2 3 (3.14e+09) :xyz}
2593 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 -4.72732e+88
2594 } {abc: (-4.727e+88) :xyz}
2596 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 -4.72732e+88
2597 } {abc: (-4.73e+88) :xyz}
2599 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 -4.72732e+88
2600 } {abc: 2 3 (-4.72732e+88) :xyz}
2602 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 -4.72732e+88
2603 } {abc: 2 3 (-4.72732e+88) :xyz}
2605 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 -4.72732e+88
2606 } {abc: 2 3 (-4.72732e+88) :xyz}
2608 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 -4.72732e+88
2609 } {abc: 2 3 (-4.727e+88) :xyz}
2611 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 -4.72732e+88
2612 } {abc: 2 3 (-4.73e+88) :xyz}
2614 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 9.87991e+143
2615 } {abc: (9.880e+143) :xyz}
2617 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 9.87991e+143
2618 } {abc: (9.88e+143) :xyz}
2620 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 9.87991e+143
2621 } {abc: 2 3 (9.87991e+143) :xyz}
2623 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 9.87991e+143
2624 } {abc: 2 3 (9.87991e+143) :xyz}
2626 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 9.87991e+143
2627 } {abc: 2 3 (9.87991e+143) :xyz}
2629 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 9.87991e+143
2630 } {abc: 2 3 (9.880e+143) :xyz}
2632 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 9.87991e+143
2633 } {abc: 2 3 (9.88e+143) :xyz}
2635 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 -6.287291e-9
2636 } {abc: (-0.000) :xyz}
2638 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 -6.287291e-9
2639 } {abc: (-6.287e-09) :xyz}
2641 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 -6.287291e-9
2642 } {abc: (-6.29e-09) :xyz}
2644 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 -6.287291e-9
2645 } {abc: 2 3 (-6.28729e-09) :xyz}
2647 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 -6.287291e-9
2648 } {abc: 2 3 (-6.28729e-09) :xyz}
2650 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 -6.287291e-9
2651 } {abc: 2 3 (-6.28729e-09) :xyz}
2653 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 -6.287291e-9
2654 } {abc: 2 3 (-0.000) :xyz}
2656 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 -6.287291e-9
2657 } {abc: 2 3 (-6.287e-09) :xyz}
2659 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 -6.287291e-9
2660 } {abc: 2 3 (-6.29e-09) :xyz}
2662 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 2 3 3.38826392e-110
2663 } {abc: (0.000) :xyz}
2665 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 2 3 3.38826392e-110
2666 } {abc: (3.388e-110) :xyz}
2668 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 2 3 3.38826392e-110
2669 } {abc: (3.39e-110) :xyz}
2671 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 2 3 3.38826392e-110
2672 } {abc: 2 3 (3.38826e-110) :xyz}
2674 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 2 3 3.38826392e-110
2675 } {abc: 2 3 (3.38826e-110) :xyz}
2677 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 2 3 3.38826392e-110
2678 } {abc: 2 3 (3.38826e-110) :xyz}
2680 sqlite3_mprintf_double {abc: %d %d (%2.3f) :xyz} 2 3 3.38826392e-110
2681 } {abc: 2 3 (0.000) :xyz}
2683 sqlite3_mprintf_double {abc: %d %d (%2.3e) :xyz} 2 3 3.38826392e-110
2684 } {abc: 2 3 (3.388e-110) :xyz}
2686 sqlite3_mprintf_double {abc: %d %d (%2.3g) :xyz} 2 3 3.38826392e-110
2687 } {abc: 2 3 (3.39e-110) :xyz}
2689 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 0.001
2690 } {abc: (0.001) :xyz}
2692 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 0.001
2693 } {abc: (1.000e-03) :xyz}
2695 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 0.001
2696 } {abc: (0.001) :xyz}
2698 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 0.001
2699 } {abc: 3 3 (0.001) :xyz}
2701 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 0.001
2702 } {abc: 3 3 (0.00100000) :xyz}
2704 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 0.001
2705 } {abc: 3 3 (000000.001) :xyz}
2707 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 0.001
2708 } {abc: 3 3 (0.001) :xyz}
2710 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 0.001
2711 } {abc: 3 3 (1.000e-03) :xyz}
2713 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 0.001
2714 } {abc: 3 3 (0.001) :xyz}
2716 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 1.0e-20
2717 } {abc: (0.000) :xyz}
2719 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 1.0e-20
2720 } {abc: (1.000e-20) :xyz}
2722 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 1.0e-20
2723 } {abc: (1e-20) :xyz}
2725 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 1.0e-20
2726 } {abc: 3 3 (1e-20) :xyz}
2728 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 1.0e-20
2729 } {abc: 3 3 (1.00000e-20) :xyz}
2731 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 1.0e-20
2732 } {abc: 3 3 (000001e-20) :xyz}
2734 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 1.0e-20
2735 } {abc: 3 3 (0.000) :xyz}
2737 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 1.0e-20
2738 } {abc: 3 3 (1.000e-20) :xyz}
2740 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 1.0e-20
2741 } {abc: 3 3 (1e-20) :xyz}
2743 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 1.0
2744 } {abc: (1.000) :xyz}
2746 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 1.0
2747 } {abc: (1.000e+00) :xyz}
2749 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 1.0
2750 } {abc: ( 1) :xyz}
2752 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 1.0
2753 } {abc: 3 3 (1) :xyz}
2755 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 1.0
2756 } {abc: 3 3 (1.00000) :xyz}
2758 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 1.0
2759 } {abc: 3 3 (0000000001) :xyz}
2761 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 1.0
2762 } {abc: 3 3 (1.000) :xyz}
2764 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 1.0
2765 } {abc: 3 3 (1.000e+00) :xyz}
2767 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 1.0
2768 } {abc: 3 3 ( 1) :xyz}
2770 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 0.0
2771 } {abc: (0.000) :xyz}
2773 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 0.0
2774 } {abc: (0.000e+00) :xyz}
2776 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 0.0
2777 } {abc: ( 0) :xyz}
2779 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 0.0
2780 } {abc: 3 3 (0) :xyz}
2782 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 0.0
2783 } {abc: 3 3 (0.00000) :xyz}
2785 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 0.0
2786 } {abc: 3 3 (0000000000) :xyz}
2788 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 0.0
2789 } {abc: 3 3 (0.000) :xyz}
2791 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 0.0
2792 } {abc: 3 3 (0.000e+00) :xyz}
2794 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 0.0
2795 } {abc: 3 3 ( 0) :xyz}
2797 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 100.0
2798 } {abc: (100.000) :xyz}
2800 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 100.0
2801 } {abc: (1.000e+02) :xyz}
2803 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 100.0
2804 } {abc: (100) :xyz}
2806 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 100.0
2807 } {abc: 3 3 (100) :xyz}
2809 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 100.0
2810 } {abc: 3 3 (100.000) :xyz}
2812 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 100.0
2813 } {abc: 3 3 (0000000100) :xyz}
2815 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 100.0
2816 } {abc: 3 3 (100.000) :xyz}
2818 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 100.0
2819 } {abc: 3 3 (1.000e+02) :xyz}
2821 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 100.0
2822 } {abc: 3 3 (100) :xyz}
2824 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 9.99999
2825 } {abc: (10.000) :xyz}
2827 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 9.99999
2828 } {abc: (1.000e+01) :xyz}
2830 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 9.99999
2831 } {abc: ( 10) :xyz}
2833 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 9.99999
2834 } {abc: 3 3 (9.99999) :xyz}
2836 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 9.99999
2837 } {abc: 3 3 (9.99999) :xyz}
2839 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 9.99999
2840 } {abc: 3 3 (0009.99999) :xyz}
2842 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 9.99999
2843 } {abc: 3 3 (10.000) :xyz}
2845 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 9.99999
2846 } {abc: 3 3 (1.000e+01) :xyz}
2848 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 9.99999
2849 } {abc: 3 3 ( 10) :xyz}
2851 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 -0.00543
2852 } {abc: (-0.005) :xyz}
2854 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 -0.00543
2855 } {abc: (-5.430e-03) :xyz}
2857 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 -0.00543
2858 } {abc: (-0.00543) :xyz}
2860 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 -0.00543
2861 } {abc: 3 3 (-0.00543) :xyz}
2863 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 -0.00543
2864 } {abc: 3 3 (-0.00543000) :xyz}
2866 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 -0.00543
2867 } {abc: 3 3 (-000.00543) :xyz}
2869 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 -0.00543
2870 } {abc: 3 3 (-0.005) :xyz}
2872 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 -0.00543
2873 } {abc: 3 3 (-5.430e-03) :xyz}
2875 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 -0.00543
2876 } {abc: 3 3 (-0.00543) :xyz}
2878 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 -1.0
2879 } {abc: (-1.000) :xyz}
2881 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 -1.0
2882 } {abc: (-1.000e+00) :xyz}
2884 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 -1.0
2885 } {abc: ( -1) :xyz}
2887 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 -1.0
2888 } {abc: 3 3 (-1) :xyz}
2890 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 -1.0
2891 } {abc: 3 3 (-1.00000) :xyz}
2893 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 -1.0
2894 } {abc: 3 3 (-000000001) :xyz}
2896 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 -1.0
2897 } {abc: 3 3 (-1.000) :xyz}
2899 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 -1.0
2900 } {abc: 3 3 (-1.000e+00) :xyz}
2902 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 -1.0
2903 } {abc: 3 3 ( -1) :xyz}
2905 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 -99.99999
2906 } {abc: (-100.000) :xyz}
2908 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 -99.99999
2909 } {abc: (-1.000e+02) :xyz}
2911 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 -99.99999
2912 } {abc: (-100) :xyz}
2914 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 -99.99999
2915 } {abc: 3 3 (-100) :xyz}
2917 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 -99.99999
2918 } {abc: 3 3 (-100.000) :xyz}
2920 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 -99.99999
2921 } {abc: 3 3 (-000000100) :xyz}
2923 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 -99.99999
2924 } {abc: 3 3 (-100.000) :xyz}
2926 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 -99.99999
2927 } {abc: 3 3 (-1.000e+02) :xyz}
2929 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 -99.99999
2930 } {abc: 3 3 (-100) :xyz}
2932 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 3.14e+9
2933 } {abc: (3140000000.000) :xyz}
2935 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 3.14e+9
2936 } {abc: (3.140e+09) :xyz}
2938 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 3.14e+9
2939 } {abc: (3.14e+09) :xyz}
2941 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 3.14e+9
2942 } {abc: 3 3 (3.14e+09) :xyz}
2944 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 3.14e+9
2945 } {abc: 3 3 (3.14000e+09) :xyz}
2947 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 3.14e+9
2948 } {abc: 3 3 (003.14e+09) :xyz}
2950 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 3.14e+9
2951 } {abc: 3 3 (3140000000.000) :xyz}
2953 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 3.14e+9
2954 } {abc: 3 3 (3.140e+09) :xyz}
2956 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 3.14e+9
2957 } {abc: 3 3 (3.14e+09) :xyz}
2959 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 -4.72732e+88
2960 } {abc: (-4.727e+88) :xyz}
2962 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 -4.72732e+88
2963 } {abc: (-4.73e+88) :xyz}
2965 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 -4.72732e+88
2966 } {abc: 3 3 (-4.72732e+88) :xyz}
2968 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 -4.72732e+88
2969 } {abc: 3 3 (-4.72732e+88) :xyz}
2971 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 -4.72732e+88
2972 } {abc: 3 3 (-4.72732e+88) :xyz}
2974 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 -4.72732e+88
2975 } {abc: 3 3 (-4.727e+88) :xyz}
2977 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 -4.72732e+88
2978 } {abc: 3 3 (-4.73e+88) :xyz}
2980 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 9.87991e+143
2981 } {abc: (9.880e+143) :xyz}
2983 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 9.87991e+143
2984 } {abc: (9.88e+143) :xyz}
2986 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 9.87991e+143
2987 } {abc: 3 3 (9.87991e+143) :xyz}
2989 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 9.87991e+143
2990 } {abc: 3 3 (9.87991e+143) :xyz}
2992 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 9.87991e+143
2993 } {abc: 3 3 (9.87991e+143) :xyz}
2995 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 9.87991e+143
2996 } {abc: 3 3 (9.880e+143) :xyz}
2998 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 9.87991e+143
2999 } {abc: 3 3 (9.88e+143) :xyz}
3001 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 -6.287291e-9
3002 } {abc: (-0.000) :xyz}
3004 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 -6.287291e-9
3005 } {abc: (-6.287e-09) :xyz}
3007 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 -6.287291e-9
3008 } {abc: (-6.29e-09) :xyz}
3010 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 -6.287291e-9
3011 } {abc: 3 3 (-6.28729e-09) :xyz}
3013 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 -6.287291e-9
3014 } {abc: 3 3 (-6.28729e-09) :xyz}
3016 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 -6.287291e-9
3017 } {abc: 3 3 (-6.28729e-09) :xyz}
3019 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 -6.287291e-9
3020 } {abc: 3 3 (-0.000) :xyz}
3022 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 -6.287291e-9
3023 } {abc: 3 3 (-6.287e-09) :xyz}
3025 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 -6.287291e-9
3026 } {abc: 3 3 (-6.29e-09) :xyz}
3028 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 3 3.38826392e-110
3029 } {abc: (0.000) :xyz}
3031 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 3 3.38826392e-110
3032 } {abc: (3.388e-110) :xyz}
3034 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 3 3.38826392e-110
3035 } {abc: (3.39e-110) :xyz}
3037 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 3 3.38826392e-110
3038 } {abc: 3 3 (3.38826e-110) :xyz}
3040 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 3 3.38826392e-110
3041 } {abc: 3 3 (3.38826e-110) :xyz}
3043 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 3 3.38826392e-110
3044 } {abc: 3 3 (3.38826e-110) :xyz}
3046 sqlite3_mprintf_double {abc: %d %d (%3.3f) :xyz} 3 3 3.38826392e-110
3047 } {abc: 3 3 (0.000) :xyz}
3049 sqlite3_mprintf_double {abc: %d %d (%3.3e) :xyz} 3 3 3.38826392e-110
3050 } {abc: 3 3 (3.388e-110) :xyz}
3052 sqlite3_mprintf_double {abc: %d %d (%3.3g) :xyz} 3 3 3.38826392e-110
3053 } {abc: 3 3 (3.39e-110) :xyz}
3055 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 0.001
3056 } {abc: (0.00) :xyz}
3058 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 0.001
3059 } {abc: (1.00e-03) :xyz}
3061 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 0.001
3062 } {abc: (0.001) :xyz}
3064 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 0.001
3065 } {abc: 3 2 (0.001) :xyz}
3067 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 0.001
3068 } {abc: 3 2 (0.00100000) :xyz}
3070 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 0.001
3071 } {abc: 3 2 (000000.001) :xyz}
3073 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 0.001
3074 } {abc: 3 2 (0.00) :xyz}
3076 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 0.001
3077 } {abc: 3 2 (1.00e-03) :xyz}
3079 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 0.001
3080 } {abc: 3 2 (0.001) :xyz}
3082 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 1.0e-20
3083 } {abc: (0.00) :xyz}
3085 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 1.0e-20
3086 } {abc: (1.00e-20) :xyz}
3088 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 1.0e-20
3089 } {abc: (1e-20) :xyz}
3091 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 1.0e-20
3092 } {abc: 3 2 (1e-20) :xyz}
3094 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 1.0e-20
3095 } {abc: 3 2 (1.00000e-20) :xyz}
3097 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 1.0e-20
3098 } {abc: 3 2 (000001e-20) :xyz}
3100 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 1.0e-20
3101 } {abc: 3 2 (0.00) :xyz}
3103 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 1.0e-20
3104 } {abc: 3 2 (1.00e-20) :xyz}
3106 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 1.0e-20
3107 } {abc: 3 2 (1e-20) :xyz}
3109 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 1.0
3110 } {abc: (1.00) :xyz}
3112 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 1.0
3113 } {abc: (1.00e+00) :xyz}
3115 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 1.0
3116 } {abc: ( 1) :xyz}
3118 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 1.0
3119 } {abc: 3 2 (1) :xyz}
3121 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 1.0
3122 } {abc: 3 2 (1.00000) :xyz}
3124 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 1.0
3125 } {abc: 3 2 (0000000001) :xyz}
3127 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 1.0
3128 } {abc: 3 2 (1.00) :xyz}
3130 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 1.0
3131 } {abc: 3 2 (1.00e+00) :xyz}
3133 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 1.0
3134 } {abc: 3 2 ( 1) :xyz}
3136 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 0.0
3137 } {abc: (0.00) :xyz}
3139 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 0.0
3140 } {abc: (0.00e+00) :xyz}
3142 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 0.0
3143 } {abc: ( 0) :xyz}
3145 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 0.0
3146 } {abc: 3 2 (0) :xyz}
3148 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 0.0
3149 } {abc: 3 2 (0.00000) :xyz}
3151 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 0.0
3152 } {abc: 3 2 (0000000000) :xyz}
3154 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 0.0
3155 } {abc: 3 2 (0.00) :xyz}
3157 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 0.0
3158 } {abc: 3 2 (0.00e+00) :xyz}
3160 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 0.0
3161 } {abc: 3 2 ( 0) :xyz}
3163 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 100.0
3164 } {abc: (100.00) :xyz}
3166 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 100.0
3167 } {abc: (1.00e+02) :xyz}
3169 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 100.0
3170 } {abc: (1e+02) :xyz}
3172 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 100.0
3173 } {abc: 3 2 (100) :xyz}
3175 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 100.0
3176 } {abc: 3 2 (100.000) :xyz}
3178 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 100.0
3179 } {abc: 3 2 (0000000100) :xyz}
3181 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 100.0
3182 } {abc: 3 2 (100.00) :xyz}
3184 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 100.0
3185 } {abc: 3 2 (1.00e+02) :xyz}
3187 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 100.0
3188 } {abc: 3 2 (1e+02) :xyz}
3190 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 9.99999
3191 } {abc: (10.00) :xyz}
3193 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 9.99999
3194 } {abc: (1.00e+01) :xyz}
3196 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 9.99999
3197 } {abc: ( 10) :xyz}
3199 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 9.99999
3200 } {abc: 3 2 (9.99999) :xyz}
3202 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 9.99999
3203 } {abc: 3 2 (9.99999) :xyz}
3205 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 9.99999
3206 } {abc: 3 2 (0009.99999) :xyz}
3208 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 9.99999
3209 } {abc: 3 2 (10.00) :xyz}
3211 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 9.99999
3212 } {abc: 3 2 (1.00e+01) :xyz}
3214 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 9.99999
3215 } {abc: 3 2 ( 10) :xyz}
3217 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 -0.00543
3218 } {abc: (-0.01) :xyz}
3220 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 -0.00543
3221 } {abc: (-5.43e-03) :xyz}
3223 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 -0.00543
3224 } {abc: (-0.0054) :xyz}
3226 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 -0.00543
3227 } {abc: 3 2 (-0.00543) :xyz}
3229 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 -0.00543
3230 } {abc: 3 2 (-0.00543000) :xyz}
3232 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 -0.00543
3233 } {abc: 3 2 (-000.00543) :xyz}
3235 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 -0.00543
3236 } {abc: 3 2 (-0.01) :xyz}
3238 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 -0.00543
3239 } {abc: 3 2 (-5.43e-03) :xyz}
3241 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 -0.00543
3242 } {abc: 3 2 (-0.0054) :xyz}
3244 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 -1.0
3245 } {abc: (-1.00) :xyz}
3247 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 -1.0
3248 } {abc: (-1.00e+00) :xyz}
3250 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 -1.0
3251 } {abc: ( -1) :xyz}
3253 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 -1.0
3254 } {abc: 3 2 (-1) :xyz}
3256 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 -1.0
3257 } {abc: 3 2 (-1.00000) :xyz}
3259 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 -1.0
3260 } {abc: 3 2 (-000000001) :xyz}
3262 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 -1.0
3263 } {abc: 3 2 (-1.00) :xyz}
3265 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 -1.0
3266 } {abc: 3 2 (-1.00e+00) :xyz}
3268 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 -1.0
3269 } {abc: 3 2 ( -1) :xyz}
3271 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 -99.99999
3272 } {abc: (-100.00) :xyz}
3274 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 -99.99999
3275 } {abc: (-1.00e+02) :xyz}
3277 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 -99.99999
3278 } {abc: (-1e+02) :xyz}
3280 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 -99.99999
3281 } {abc: 3 2 (-100) :xyz}
3283 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 -99.99999
3284 } {abc: 3 2 (-100.000) :xyz}
3286 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 -99.99999
3287 } {abc: 3 2 (-000000100) :xyz}
3289 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 -99.99999
3290 } {abc: 3 2 (-100.00) :xyz}
3292 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 -99.99999
3293 } {abc: 3 2 (-1.00e+02) :xyz}
3295 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 -99.99999
3296 } {abc: 3 2 (-1e+02) :xyz}
3298 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 3.14e+9
3299 } {abc: (3140000000.00) :xyz}
3301 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 3.14e+9
3302 } {abc: (3.14e+09) :xyz}
3304 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 3.14e+9
3305 } {abc: (3.1e+09) :xyz}
3307 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 3.14e+9
3308 } {abc: 3 2 (3.14e+09) :xyz}
3310 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 3.14e+9
3311 } {abc: 3 2 (3.14000e+09) :xyz}
3313 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 3.14e+9
3314 } {abc: 3 2 (003.14e+09) :xyz}
3316 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 3.14e+9
3317 } {abc: 3 2 (3140000000.00) :xyz}
3319 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 3.14e+9
3320 } {abc: 3 2 (3.14e+09) :xyz}
3322 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 3.14e+9
3323 } {abc: 3 2 (3.1e+09) :xyz}
3325 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 -4.72732e+88
3326 } {abc: (-4.73e+88) :xyz}
3328 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 -4.72732e+88
3329 } {abc: (-4.7e+88) :xyz}
3331 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 -4.72732e+88
3332 } {abc: 3 2 (-4.72732e+88) :xyz}
3334 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 -4.72732e+88
3335 } {abc: 3 2 (-4.72732e+88) :xyz}
3337 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 -4.72732e+88
3338 } {abc: 3 2 (-4.72732e+88) :xyz}
3340 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 -4.72732e+88
3341 } {abc: 3 2 (-4.73e+88) :xyz}
3343 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 -4.72732e+88
3344 } {abc: 3 2 (-4.7e+88) :xyz}
3346 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 9.87991e+143
3347 } {abc: (9.88e+143) :xyz}
3349 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 9.87991e+143
3350 } {abc: (9.9e+143) :xyz}
3352 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 9.87991e+143
3353 } {abc: 3 2 (9.87991e+143) :xyz}
3355 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 9.87991e+143
3356 } {abc: 3 2 (9.87991e+143) :xyz}
3358 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 9.87991e+143
3359 } {abc: 3 2 (9.87991e+143) :xyz}
3361 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 9.87991e+143
3362 } {abc: 3 2 (9.88e+143) :xyz}
3364 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 9.87991e+143
3365 } {abc: 3 2 (9.9e+143) :xyz}
3367 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 -6.287291e-9
3368 } {abc: (-0.00) :xyz}
3370 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 -6.287291e-9
3371 } {abc: (-6.29e-09) :xyz}
3373 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 -6.287291e-9
3374 } {abc: (-6.3e-09) :xyz}
3376 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 -6.287291e-9
3377 } {abc: 3 2 (-6.28729e-09) :xyz}
3379 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 -6.287291e-9
3380 } {abc: 3 2 (-6.28729e-09) :xyz}
3382 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 -6.287291e-9
3383 } {abc: 3 2 (-6.28729e-09) :xyz}
3385 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 -6.287291e-9
3386 } {abc: 3 2 (-0.00) :xyz}
3388 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 -6.287291e-9
3389 } {abc: 3 2 (-6.29e-09) :xyz}
3391 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 -6.287291e-9
3392 } {abc: 3 2 (-6.3e-09) :xyz}
3394 sqlite3_mprintf_double {abc: (%*.*f) :xyz} 3 2 3.38826392e-110
3395 } {abc: (0.00) :xyz}
3397 sqlite3_mprintf_double {abc: (%*.*e) :xyz} 3 2 3.38826392e-110
3398 } {abc: (3.39e-110) :xyz}
3400 sqlite3_mprintf_double {abc: (%*.*g) :xyz} 3 2 3.38826392e-110
3401 } {abc: (3.4e-110) :xyz}
3403 sqlite3_mprintf_double {abc: %d %d (%g) :xyz} 3 2 3.38826392e-110
3404 } {abc: 3 2 (3.38826e-110) :xyz}
3406 sqlite3_mprintf_double {abc: %d %d (%#g) :xyz} 3 2 3.38826392e-110
3407 } {abc: 3 2 (3.38826e-110) :xyz}
3409 sqlite3_mprintf_double {abc: %d %d (%010g) :xyz} 3 2 3.38826392e-110
3410 } {abc: 3 2 (3.38826e-110) :xyz}
3412 sqlite3_mprintf_double {abc: %d %d (%3.2f) :xyz} 3 2 3.38826392e-110
3413 } {abc: 3 2 (0.00) :xyz}
3415 sqlite3_mprintf_double {abc: %d %d (%3.2e) :xyz} 3 2 3.38826392e-110
3416 } {abc: 3 2 (3.39e-110) :xyz}
3418 sqlite3_mprintf_double {abc: %d %d (%3.2g) :xyz} 3 2 3.38826392e-110
3419 } {abc: 3 2 (3.4e-110) :xyz}
3421 sqlite3_mprintf_double {abc: (% *.*f) :xyz} 3 2 3.38826392e-110
3422 } {abc: ( 0.00) :xyz}
3424 sqlite3_mprintf_double {abc: (% *.*e) :xyz} 3 2 3.38826392e-110
3425 } {abc: ( 3.39e-110) :xyz}
3427 sqlite3_mprintf_double {abc: (% *.*g) :xyz} 3 2 3.38826392e-110
3428 } {abc: ( 3.4e-110) :xyz}
3430 sqlite3_mprintf_double {abc: %d %d (% g) :xyz} 3 2 3.38826392e-110
3431 } {abc: 3 2 ( 3.38826e-110) :xyz}
3433 sqlite3_mprintf_double {abc: %d %d (% #g) :xyz} 3 2 3.38826392e-110
3434 } {abc: 3 2 ( 3.38826e-110) :xyz}
3436 sqlite3_mprintf_double {abc: %d %d (%0 10g) :xyz} 3 2 3.38826392e-110
3437 } {abc: 3 2 ( 3.38826e-110) :xyz}
3439 sqlite3_mprintf_double {abc: %d %d (% 3.2f) :xyz} 3 2 3.38826392e-110
3440 } {abc: 3 2 ( 0.00) :xyz}
3442 sqlite3_mprintf_double {abc: %d %d (% 3.2e) :xyz} 3 2 3.38826392e-110
3443 } {abc: 3 2 ( 3.39e-110) :xyz}
3445 sqlite3_mprintf_double {abc: %d %d (% 3.2g) :xyz} 3 2 3.38826392e-110
3446 } {abc: 3 2 ( 3.4e-110) :xyz}
3449 sqlite3_mprintf_double {abc: %d %d (%5.0g) :xyz} 0 0 1.234
3450 } {abc: 0 0 ( 1) :xyz}
3452 sqlite3_mprintf_double {abc: %d %d (%+5.0g) :xyz} 0 0 1.234
3453 } {abc: 0 0 ( +1) :xyz}
3455 sqlite3_mprintf_double {abc: %d %d (%+-5.0g) :xyz} 0 0 1.234
3456 } {abc: 0 0 (+1 ) :xyz}
3459 sqlite3_mprintf_double {abc: %d %d (%-010.5f) :xyz} 0 0 1.234
3460 } {abc: 0 0 (1.23400 ) :xyz}
3462 sqlite3_mprintf_double {abc: %d %d (%010.5f) :xyz} 0 0 1.234
3463 } {abc: 0 0 (0001.23400) :xyz}
3465 sqlite3_mprintf_double {abc: %d %d (%+010.5f) :xyz} 0 0 1.234
3466 } {abc: 0 0 (+001.23400) :xyz}
3731 sqlite3_mprintf_str {abc-%*.*s-xyz} 10 -10 {a_very_long_string}
3732 } {abc-a_very_lon-xyz}