Skip to content

Commit

Permalink
Merge pull request #1991 from mabel-dev/#1990
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer authored Sep 8, 2024
2 parents 82c223c + bc35629 commit c0e97a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__build__ = 774
__build__ = 776

# 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 @@ -27,9 +27,9 @@ class VersionStatus(Enum):


_major = 0
_minor = 17
_revision = 1
_status = VersionStatus.RELEASE
_minor = 18
_revision = 0
_status = VersionStatus.ALPHA

__author__ = "@joocer"
__version__ = f"{_major}.{_minor}.{_revision}" + (
Expand Down
4 changes: 4 additions & 0 deletions opteryx/functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,8 @@ def select_values(boolean_arrays, value_arrays):
"CEILING": "CEIL", # deprecated, remove 0.19.0
"ABSOLUTE": "ABS", # deprecated, remove 0.19.0
"TRUNCATE": "TRUNC", # deprecated, remove 0.19.0
"LIST_CONTAINS_ANY": "ARRAY_CONTAINS_ANY", # deprecated, remove 0.20.0
"LIST_CONTAINS_ALL": "ARRAY_CONTAINS_ALL", # deprecated, remove 0.20.0
}

# fmt:off
Expand Down Expand Up @@ -495,6 +497,8 @@ def apply_function(function: str = None, *parameters):
"IFNULL",
"LIST_CONTAINS_ANY",
"LIST_CONTAINS_ALL",
"ARRAY_CONTAINS_ANY",
"ARRAY_CONTAINS_ALL",
"CONCAT",
"CONCAT_WS",
"IIF",
Expand Down

0 comments on commit c0e97a2

Please sign in to comment.