Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From d74ec88c2f9b9e05 To 9edaeed56f2282fd
2022-02-16
| ||
15:11 | Make the sqlite3_error_offset() interface accessible from TCL using the new "erroroffset" method on the sqlite3 object. (check-in: 3454a1222b user: drh tags: trunk) | |
2022-02-15
| ||
20:56 | Merge the latest trunk enhancements into the reuse-schema branch. (check-in: b9ba43fcb3 user: drh tags: reuse-schema) | |
20:37 | Merge recent trunk enhancements into the wal2 branch. (check-in: 7dba818893 user: drh tags: wal2) | |
20:18 | Merge the latest trunk changes into the begin-concurrent branch. (check-in: 94838f16ba user: drh tags: begin-concurrent) | |
17:04 | Sync with trunk (check-in: 2b4a295c58 user: larrybr tags: shell-tweaks) | |
13:23 | Improved rendering of floating point numbers without a fractional part in ".dump" output from the CLI. Forum post 550d877659f37cb2. (check-in: 9edaeed56f user: drh tags: trunk) | |
11:46 | New assert() statements to help prove correctness of memjournal.c. (check-in: d74ec88c2f user: drh tags: trunk) | |
2022-02-14
| ||
21:11 | Generalize the in-memory journal so that it is able to accept writes that begin at any offset less than or equal to the current file size. (check-in: c039d5476e user: drh tags: trunk) | |
Changes to src/shell.c.in.
︙ | |||
2307 2308 2309 2310 2311 2312 2313 | 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 | + + + + - + + | sqlite3_uint64 ur; memcpy(&ur,&r,sizeof(r)); if( ur==0x7ff0000000000000LL ){ raw_printf(p->out, "1e999"); }else if( ur==0xfff0000000000000LL ){ raw_printf(p->out, "-1e999"); }else{ sqlite3_int64 ir = (sqlite3_int64)r; if( r==(double)ir ){ sqlite3_snprintf(50,z,"%lld.0", ir); }else{ |
︙ |