Skip to content

Commit

Permalink
KVIndex math
Browse files Browse the repository at this point in the history
Signed-off-by: Praneeth Bedapudi <[email protected]>
  • Loading branch information
bedapudi6788 committed Mar 18, 2024
1 parent 5fc5d8f commit 8dfebfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion liteindex/query_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def process_nested_query(value, prefix):
params.extend(value)

elif value is None:
where_conditions.append(f'"{column}" IS NULL')
where_conditions.append(f'"{column}" IS NULL' if column_type is not None else f"{column} IS NULL")
else:
if column_type == "other":
column = f"__hash_{column}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
EMAIL = "[email protected]"
AUTHOR = "BEDAPUDI PRANEETH"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "0.0.2.dev61"
VERSION = "0.0.2.dev62"

# What packages are required for this module to be executed?
REQUIRED = []
Expand Down

0 comments on commit 8dfebfb

Please sign in to comment.