Skip to content

Commit

Permalink
add hive parser; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
wseaton committed Feb 16, 2021
1 parent 4aa171f commit 3f9c8d1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.8
current_version = 0.1.9
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqloxide"
version = "0.1.8"
version = "0.1.9"
authors = ["Will Eaton <me@wseaton.com>"]
edition = "2018"

Expand All @@ -16,5 +16,5 @@ version = "0.12.4"
features = ["extension-module"]

[dependencies.sqlparser]
version = "0.7.0"
version = "0.8.0"
features = ["json_example"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sqloxide"
version = "0.1.8"
version = "0.1.9"
repository = "https://github.com/wseaton/sqloxide"
license = "MIT"
description = "Python bindings for sqlparser-rs"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup_kwargs = {
'name': 'sqloxide',
'version': '0.1.8',
'version': '0.1.9',
'description': 'Python bindings for sqlparser-rs',
'long_description': open('readme.md').read(),
'long_description_content_type': 'text/markdown',
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fn string_to_dialect(dialect: &str) -> Box<dyn Dialect> {
match dialect {
"generic" => Box::new(GenericDialect {}),
"ansi" => Box::new(AnsiDialect {}),
"hive" => Box::new(HiveDialect {}),
"ms" => Box::new(MsSqlDialect {}),
"mysql" => Box::new(MySqlDialect {}),
"postgres" => Box::new(PostgreSqlDialect {}),
Expand Down

0 comments on commit 3f9c8d1

Please sign in to comment.