Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Merge pull request #89 from databendlabs/fix/cast-bool-test
Browse files Browse the repository at this point in the history
fix: test_cast_bool
  • Loading branch information
hantmac authored Dec 24, 2024
2 parents f7d12b4 + c2440b0 commit 15c18ce
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 15c18ce

Please sign in to comment.