Skip to content

Commit

Permalink
fix: test_cast_bool
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed Dec 24, 2024
1 parent f875384 commit bd9de88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "databend-py"
version = "0.1.0"
version = "0.6.3"
description = "Add your description here"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def test_rollback(self):
def test_cast_bool(self):
client = Client.from_url(self.databend_url)
_, data = client.execute("select 'False'::boolean union select 'True'::boolean")
self.assertEqual(data, [(True,), (False,)])
self.assertEqual(len(data), 2)

def test_temp_table(self):
client = Client.from_url(self.databend_url)
Expand Down

0 comments on commit bd9de88

Please sign in to comment.