Skip to content

Commit

Permalink
update gluesql to 0.16 (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex authored Jan 9, 2025
1 parent 5374828 commit 525444e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ rustls-pemfile = "2.0"
rustls-pki-types = "1.0"
## webpki-roots has mozilla's set of roots
## rustls-native-certs loads roots from current system
gluesql = { version = "0.15", default-features = false, features = ["memory-storage"] }
gluesql = { version = "0.16", default-features = false, features = ["gluesql_memory_storage"] }

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion examples/gluesql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ impl SimpleQueryHandler for GluesqlProcessor {
}
Payload::Create => Ok(Response::Execution(Tag::new("CREATE TABLE"))),
Payload::AlterTable => Ok(Response::Execution(Tag::new("ALTER TABLE"))),
Payload::DropTable => Ok(Response::Execution(Tag::new("DROP TABLE"))),
Payload::DropTable(_) => Ok(Response::Execution(Tag::new("DROP TABLE"))),
Payload::CreateIndex => Ok(Response::Execution(Tag::new("CREATE INDEX"))),
Payload::DropIndex => Ok(Response::Execution(Tag::new("DROP INDEX"))),
_ => {
Expand Down

0 comments on commit 525444e

Please sign in to comment.