Fix the SQLite feature name in version (#8381)

A tiny fix: make the naming of the `sqlite` feature consistent across
both `Cargo.toml` and the `version` command's output. Previously
`version` displayed it as `database`, a user was asking about that the
other day.
This commit is contained in:
Reilly Wood 2023-03-09 20:49:29 -08:00 committed by GitHub
parent 4e78f3649b
commit 878e08cfa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,7 +164,7 @@ fn features_enabled() -> Vec<String> {
#[cfg(feature = "sqlite")]
{
names.push("database".to_string());
names.push("sqlite".to_string());
}
#[cfg(feature = "dataframe")]