gwenn
gwenn
https://sqlite.org/c3ref/c_prepare_normalize.html > The SQLITE_PREPARE_PERSISTENT flag is a hint to the query planner that the prepared statement will be retained for a long time and probably reused many times. `sqlite3_prepare_v3` was...
https://en.wikipedia.org/wiki/Byte_order_mark
Partial fix for #1216: Make array, csvtab, series modules work with either `modern_sqlite` or `buildtime_bindgen`.
SQLite raises a parser error with the following DDL: ```sh sqlite> CREATE TABLE test ( ...> x TEXT, ...> x TEXT ...> ); Parse error: duplicate column name: x ```...
Fix #127 Fix #442 TODO - [x] check if `History::add` and `History::add_owned` can be fused (https://users.rust-lang.org/t/trait-method-that-supports-both-str-and-string-as-parameter/72498 suggests that this is not possible) - [x] put old / default `FileHistory` behind...
Fixes #611 - [ ] check on unix (partially tested) - [ ] check on windows (not tested) - [ ] prompt / line / hint subslice may be passed...
Except while typing at the end of input. - [X] impl `poll` on Windows - [x] make `REFRESH_RATE_LIMIT` configurable See [replxx](https://github.com/AmokHuginnsson/replxx/blob/d13d26504f97ed2a54bc02dd37d20ef3b0179518/src/replxx_impl.cxx#L416-L422) and [led](https://github.com/cessen/led/blob/27572c8838a1c664ee378a19358604063881cc1d/src/term_ui/mod.rs#L140-L147)
See https://github.com/danburkert/ksql/blob/master/src/main.rs#L199