Skip to content

Commit

Permalink
Merge pull request #1830 from mabel-dev/0.16.2
Browse files Browse the repository at this point in the history
0.16.2
  • Loading branch information
joocer authored Jul 22, 2024
2 parents a501b1c + 344490b commit 76945ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand Down
4 changes: 2 additions & 2 deletions opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__build__ = 679
__build__ = 680

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,7 @@ class VersionStatus(Enum):
_major = 0
_minor = 16
_revision = 2
_status = VersionStatus.ALPHA
_status = VersionStatus.RELEASE

__author__ = "@joocer"
__version__ = f"{_major}.{_minor}.{_revision}" + (
Expand Down
2 changes: 1 addition & 1 deletion opteryx/connectors/capabilities/predicate_pushable.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _predicate_to_dnf(root):
if root.left.node_type != NodeType.IDENTIFIER:
root.left, root.right = root.right, root.left
if root.right.type in (OrsoTypes.DATE, OrsoTypes.TIMESTAMP):
root.right.value = root.right.value.astype("datetime64[us]")
raise NotSupportedError()
if root.left.node_type != NodeType.IDENTIFIER:
raise NotSupportedError()
if root.right.node_type != NodeType.LITERAL:
Expand Down

0 comments on commit 76945ef

Please sign in to comment.