Commit Graph

1770 Commits

Author SHA1 Message Date
Thom Chiovoloni
12179be14f Disable leak-sanitizer for now 2021-01-31 16:23:00 -08:00
Thom Chiovoloni
19b0772f3f Make it clear bind_in is not public, and inline functions passing large arrays by value to avoid too much copying 2021-01-31 16:18:48 -08:00
gwenn
2e08f8b31d
Merge pull request #888 from gwenn/fix_test
Fix unstable tests when machine is slow
2021-01-30 14:20:36 +01:00
gwenn
91d6ce7a52 Fix unstable tests when machine is slow 2021-01-30 12:55:00 +01:00
gwenn
7def43fe7b
Merge pull request #886 from gwenn/date_format
Fix DateTime format
2021-01-30 09:17:10 +01:00
gwenn
4f175d5748 Fix DateTime format 2021-01-29 22:03:50 +01:00
gwenn
d5b5f43015
Merge pull request #881 from gwenn/params
Use most concise syntax for params
2021-01-20 17:53:07 +01:00
gwenn
afcdc2b43a Use most concise syntax for params 2021-01-19 21:16:08 +01:00
gwenn
47134e9527
Merge pull request #876 from gwenn/clippy
Fix clippy warnings
2021-01-08 21:33:24 +01:00
gwenn
70742651b1 Fix CI build
clippy::unnecessary_wraps is not stable yet
2021-01-02 13:43:12 +01:00
gwenn
2319165b59 Fix clippy warnings 2021-01-02 10:49:29 +01:00
Thom Chiovoloni
3b9f5e92ad
Merge pull request #872 from striezel/comment-typo
fix typo in .travis.yml
2020-12-24 13:45:52 -08:00
Dirk Stolle
69ad4aee91 fix typo in .travis.yml 2020-12-24 22:29:19 +01:00
gwenn
e154ccb606
Rename get_raw to get_ref_unwrap and get_raw_checked to get_ref (#838)
* test `From<FromSqlError> for Error`
* Rename get_raw to get_ref_unwrap and get_raw_checked to get_ref
2020-12-22 21:34:30 +01:00
Thom Chiovoloni
73f59a3a38
Merge pull request #866 from phiresky/pass-context-to-aggregate 2020-12-19 12:47:13 -08:00
phiresky
0221266f2e make init return result 2020-12-19 12:15:18 +01:00
Thom Chiovoloni
4657ddc8e2
Merge pull request #867 from phiresky/function-context-db-handle 2020-12-18 20:50:52 -08:00
phiresky
7c83680231 fix lints 2020-12-18 23:11:23 +01:00
phiresky
d4f8242d0c format 2020-12-18 13:54:38 +01:00
phiresky
9d2e936eb8 formatting and tests 2020-12-18 13:53:13 +01:00
phiresky
eff747b756 format 2020-12-18 13:52:07 +01:00
phiresky
25c817413b pass context to finalize function 2020-12-18 13:30:11 +01:00
phiresky
1309c563c7 add get_connection method to function context 2020-12-18 13:24:03 +01:00
phiresky
2cffca874c pass context to aggregate init function 2020-12-18 13:11:39 +01:00
Thom Chiovoloni
e0dbce4366
Merge pull request #861 from dubiousjim/push1 2020-12-16 23:25:45 -08:00
Dubiousjim
2e8438ee1d csvtab implies vtab 2020-12-16 11:23:43 -05:00
Dubiousjim
5ed085fe46 revert SQLITE_FLAGS back to LIBSQLITE3_FLAGS 2020-12-16 08:49:00 -05:00
Dubiousjim
46d91cd2b6 Cargo.toml: be explicit about what bundled-full omits 2020-12-07 21:40:08 -05:00
Dubiousjim
50dbc17490 LIBSQLITE3_FLAGS for bundled -> SQLITE_FLAGS
This flag was added in a9b700c but never documented. Here we change the
name to more closely follow SQLITE_MAX_VARIABLE_NUMBER etc; and
document its existence in README.md.
2020-12-07 21:39:48 -05:00
Dubiousjim
d916f7ad00 README: document SQLITE_MAX_* 2020-12-07 20:30:10 -05:00
Dubiousjim
13bb87b469 README: document SQLITE3_STATIC 2020-12-07 20:30:10 -05:00
Dubiousjim
7b9b1d2965 README: document SQLITE3_LIB/INCLUDE_DIR 2020-12-07 20:30:10 -05:00
Dubiousjim
682d8a837e README: caps 2020-12-07 17:42:06 -05:00
Dubiousjim
e5ca02c6ef README: cargo test -> cargo clippy 2020-12-07 17:42:06 -05:00
Dubiousjim
48f22a1e3f README: wrap features with quotes when needed 2020-12-07 17:42:06 -05:00
Dubiousjim
be98a73a5d README: document which features imply other features 2020-12-07 17:42:06 -05:00
Dubiousjim
9c35d20ef3 README: document features = "window series extra_check column_decltype collation" 2020-12-07 17:41:45 -05:00
gwenn
0a2e0b7240
Merge pull request #856 from gwenn/3.34.0
Upgrade SQLite bundled version to 3.34.0
2020-12-05 07:28:17 +01:00
Thom Chiovoloni
4601d8a2f3
Merge pull request #858 from rusqlite/hotfix-v0.24.2 2020-12-04 19:20:03 -08:00
Thom Chiovoloni
cef6dbbb26 Prep release v0.24.2
This will be the same as v0.24.1 with
cf598aa0a3 cherry-picked in.
2020-12-04 18:55:08 -08:00
Emilio Cobos Álvarez
154e4869ee Use a weaker dependency on smallvec.
There's no reason to use 1.4, 1.0.0 works just as well.

1.4 causes a big perf regression in Firefox, see
https://github.com/servo/rust-smallvec/issues/243, so while we figure
that out we'd like to keep using 1.3.0.
2020-12-04 18:52:51 -08:00
Emilio Cobos Álvarez
cf598aa0a3 Use a weaker dependency on smallvec.
There's no reason to use 1.4, 1.0.0 works just as well.

1.4 causes a big perf regression in Firefox, see
https://github.com/servo/rust-smallvec/issues/243, so while we figure
that out we'd like to keep using 1.3.0.
2020-12-04 18:50:02 -08:00
gwenn
67102efb2f Upgrade SQLite bundled version to 3.34.0 2020-12-04 18:26:02 +00:00
gwenn
4b9e693744
Merge pull request #854 from mqudsi/document_default_busy_handler
Improve busy handler documentation
2020-12-03 17:59:39 +01:00
Mahmoud Al-Qudsi
73754bbe24 [docs] Document default busy_timeout/busy_handler
Include a note in the documentation for both `busy_handler()` and
`busy_timeout()` explaining the current default behavior (with a
disclaimer indicating that this behavior should not be relied upon as it
is an implementation detail that may change).
2020-12-02 17:20:50 -06:00
Mahmoud Al-Qudsi
2dab6d8364 [docs] Fix over-long monospacing of SQLITE_BUSY 2020-12-02 17:06:46 -06:00
gwenn
e75a5a6bc2
Merge pull request #850 from gwenn/bindgen
Upgrade to bindgen 0.56
2020-11-27 19:55:04 +01:00
gwenn
18bc6dd1a1 Upgrade to bindgen 0.56 2020-11-27 18:36:52 +01:00
Thom Chiovoloni
295b8f2143 Update time to appease deps.rs 2020-11-26 22:45:17 -08:00
gwenn
5f16886b61
Merge pull request #848 from gwenn/doc_link
Add/fix rustdoc links
2020-11-22 17:41:59 +01:00