blob: 71fcf397be3270d80d3e362b3ec786ccaabd4bcc [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""This module supports expressions, one of the core concepts in DataFusion.
See :ref:`Expressions` in the online documentation for more details.
"""
from __future__ import annotations
from ._internal import expr as expr_internal, LogicalPlan
from datafusion.common import RexType, DataTypeMap
from typing import Any
import pyarrow as pa
# The following are imported from the internal representation. We may choose to
# give these all proper wrappers, or to simply leave as is. These were added
# in order to support passing the `test_imports` unit test.
# Tim Saucer note: It is not clear to me what the use case is for exposing
# these definitions to the end user.
Alias = expr_internal.Alias
Analyze = expr_internal.Analyze
Aggregate = expr_internal.Aggregate
AggregateFunction = expr_internal.AggregateFunction
Between = expr_internal.Between
BinaryExpr = expr_internal.BinaryExpr
Case = expr_internal.Case
Cast = expr_internal.Cast
Column = expr_internal.Column
CreateMemoryTable = expr_internal.CreateMemoryTable
CreateView = expr_internal.CreateView
CrossJoin = expr_internal.CrossJoin
Distinct = expr_internal.Distinct
DropTable = expr_internal.DropTable
EmptyRelation = expr_internal.EmptyRelation
Exists = expr_internal.Exists
Explain = expr_internal.Explain
Extension = expr_internal.Extension
Filter = expr_internal.Filter
GroupingSet = expr_internal.GroupingSet
Join = expr_internal.Join
ILike = expr_internal.ILike
InList = expr_internal.InList
InSubquery = expr_internal.InSubquery
IsFalse = expr_internal.IsFalse
IsNotTrue = expr_internal.IsNotTrue
IsNull = expr_internal.IsNull
IsTrue = expr_internal.IsTrue
IsUnknown = expr_internal.IsUnknown
IsNotFalse = expr_internal.IsNotFalse
IsNotNull = expr_internal.IsNotNull
IsNotUnknown = expr_internal.IsNotUnknown
JoinConstraint = expr_internal.JoinConstraint
JoinType = expr_internal.JoinType
Like = expr_internal.Like
Limit = expr_internal.Limit
Literal = expr_internal.Literal
Negative = expr_internal.Negative
Not = expr_internal.Not
Partitioning = expr_internal.Partitioning
Placeholder = expr_internal.Placeholder
Projection = expr_internal.Projection
Repartition = expr_internal.Repartition
ScalarSubquery = expr_internal.ScalarSubquery
ScalarVariable = expr_internal.ScalarVariable
SimilarTo = expr_internal.SimilarTo
Sort = expr_internal.Sort
SortExpr = expr_internal.SortExpr
Subquery = expr_internal.Subquery
SubqueryAlias = expr_internal.SubqueryAlias
TableScan = expr_internal.TableScan
TryCast = expr_internal.TryCast
Union = expr_internal.Union
Unnest = expr_internal.Unnest
UnnestExpr = expr_internal.UnnestExpr
Window = expr_internal.Window
__all__ = [
"Expr",
"Column",
"Literal",
"BinaryExpr",
"Literal",
"AggregateFunction",
"Not",
"IsNotNull",
"IsNull",
"IsTrue",
"IsFalse",
"IsUnknown",
"IsNotTrue",
"IsNotFalse",
"IsNotUnknown",
"Negative",
"Like",
"ILike",
"SimilarTo",
"ScalarVariable",
"Alias",
"InList",
"Exists",
"Subquery",
"InSubquery",
"ScalarSubquery",
"Placeholder",
"GroupingSet",
"Case",
"CaseBuilder",
"Cast",
"TryCast",
"Between",
"Explain",
"Limit",
"Aggregate",
"Sort",
"SortExpr",
"Analyze",
"EmptyRelation",
"Join",
"JoinType",
"JoinConstraint",
"CrossJoin",
"Union",
"Unnest",
"UnnestExpr",
"Extension",
"Filter",
"Projection",
"TableScan",
"CreateMemoryTable",
"CreateView",
"Distinct",
"SubqueryAlias",
"DropTable",
"Partitioning",
"Repartition",
"Window",
"WindowFrame",
"WindowFrameBound",
]
class Expr:
"""Expression object.
Expressions are one of the core concepts in DataFusion. See
:ref:`Expressions` in the online documentation for more information.
"""
def __init__(self, expr: expr_internal.Expr) -> None:
"""This constructor should not be called by the end user."""
self.expr = expr
def to_variant(self) -> Any:
"""Convert this expression into a python object if possible."""
return self.expr.to_variant()
def display_name(self) -> str:
"""Returns the name of this expression as it should appear in a schema.
This name will not include any CAST expressions.
"""
return self.expr.display_name()
def canonical_name(self) -> str:
"""Returns a complete string representation of this expression."""
return self.expr.canonical_name()
def variant_name(self) -> str:
"""Returns the name of the Expr variant.
Ex: ``IsNotNull``, ``Literal``, ``BinaryExpr``, etc
"""
return self.expr.variant_name()
def __richcmp__(self, other: Expr, op: int) -> Expr:
"""Comparison operator."""
return Expr(self.expr.__richcmp__(other, op))
def __repr__(self) -> str:
"""Generate a string representation of this expression."""
return self.expr.__repr__()
def __add__(self, rhs: Any) -> Expr:
"""Addition operator.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__add__(rhs.expr))
def __sub__(self, rhs: Any) -> Expr:
"""Subtraction operator.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__sub__(rhs.expr))
def __truediv__(self, rhs: Any) -> Expr:
"""Division operator.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__truediv__(rhs.expr))
def __mul__(self, rhs: Any) -> Expr:
"""Multiplication operator.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__mul__(rhs.expr))
def __mod__(self, rhs: Any) -> Expr:
"""Modulo operator (%).
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__mod__(rhs.expr))
def __and__(self, rhs: Expr) -> Expr:
"""Logical AND."""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__and__(rhs.expr))
def __or__(self, rhs: Expr) -> Expr:
"""Logical OR."""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__or__(rhs.expr))
def __invert__(self) -> Expr:
"""Binary not (~)."""
return Expr(self.expr.__invert__())
def __getitem__(self, key: str) -> Expr:
"""For struct data types, return the field indicated by ``key``."""
return Expr(self.expr.__getitem__(key))
def __eq__(self, rhs: Any) -> Expr:
"""Equal to.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__eq__(rhs.expr))
def __ne__(self, rhs: Any) -> Expr:
"""Not equal to.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__ne__(rhs.expr))
def __ge__(self, rhs: Any) -> Expr:
"""Greater than or equal to.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__ge__(rhs.expr))
def __gt__(self, rhs: Any) -> Expr:
"""Greater than.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__gt__(rhs.expr))
def __le__(self, rhs: Any) -> Expr:
"""Less than or equal to.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__le__(rhs.expr))
def __lt__(self, rhs: Any) -> Expr:
"""Less than.
Accepts either an expression or any valid PyArrow scalar literal value.
"""
if not isinstance(rhs, Expr):
rhs = Expr.literal(rhs)
return Expr(self.expr.__lt__(rhs.expr))
__radd__ = __add__
__rand__ = __and__
__rmod__ = __mod__
__rmul__ = __mul__
__ror__ = __or__
__rsub__ = __sub__
__rtruediv__ = __truediv__
@staticmethod
def literal(value: Any) -> Expr:
"""Creates a new expression representing a scalar value.
``value`` must be a valid PyArrow scalar value or easily castable to one.
"""
if not isinstance(value, pa.Scalar):
value = pa.scalar(value)
return Expr(expr_internal.Expr.literal(value))
@staticmethod
def column(value: str) -> Expr:
"""Creates a new expression representing a column."""
return Expr(expr_internal.Expr.column(value))
def alias(self, name: str) -> Expr:
"""Assign a name to the expression."""
return Expr(self.expr.alias(name))
def sort(self, ascending: bool = True, nulls_first: bool = True) -> Expr:
"""Creates a sort :py:class:`Expr` from an existing :py:class:`Expr`.
Args:
ascending: If true, sort in ascending order.
nulls_first: Return null values first.
"""
return Expr(self.expr.sort(ascending=ascending, nulls_first=nulls_first))
def is_null(self) -> Expr:
"""Returns ``True`` if this expression is null."""
return Expr(self.expr.is_null())
def cast(self, to: pa.DataType[Any]) -> Expr:
"""Cast to a new data type."""
return Expr(self.expr.cast(to))
def rex_type(self) -> RexType:
"""Return the Rex Type of this expression.
A Rex (Row Expression) specifies a single row of data.That specification
could include user defined functions or types. RexType identifies the
row as one of the possible valid ``RexType``.
"""
return self.expr.rex_type()
def types(self) -> DataTypeMap:
"""Return the ``DataTypeMap``.
Returns:
DataTypeMap which represents the PythonType, Arrow DataType, and
SqlType Enum which this expression represents.
"""
return self.expr.types()
def python_value(self) -> Any:
"""Extracts the Expr value into a PyObject.
This is only valid for literal expressions.
Returns:
Python object representing literal value of the expression.
"""
return self.expr.python_value()
def rex_call_operands(self) -> list[Expr]:
"""Return the operands of the expression based on it's variant type.
Row expressions, Rex(s), operate on the concept of operands. Different
variants of Expressions, Expr(s), store those operands in different
datastructures. This function examines the Expr variant and returns
the operands to the calling logic.
"""
return [Expr(e) for e in self.expr.rex_call_operands()]
def rex_call_operator(self) -> str:
"""Extracts the operator associated with a row expression type call."""
return self.expr.rex_call_operator()
def column_name(self, plan: LogicalPlan) -> str:
"""Compute the output column name based on the provided logical plan."""
return self.expr.column_name(plan)
class WindowFrame:
"""Defines a window frame for performing window operations."""
def __init__(
self, units: str, start_bound: int | None, end_bound: int | None
) -> None:
"""Construct a window frame using the given parameters.
Args:
units: Should be one of ``rows``, ``range``, or ``groups``.
start_bound: Sets the preceeding bound. Must be >= 0. If none, this
will be set to unbounded. If unit type is ``groups``, this
parameter must be set.
end_bound: Sets the following bound. Must be >= 0. If none, this
will be set to unbounded. If unit type is ``groups``, this
parameter must be set.
"""
self.window_frame = expr_internal.WindowFrame(units, start_bound, end_bound)
def get_frame_units(self) -> str:
"""Returns the window frame units for the bounds."""
return self.window_frame.get_frame_units()
def get_lower_bound(self) -> WindowFrameBound:
"""Returns starting bound."""
return WindowFrameBound(self.window_frame.get_lower_bound())
def get_upper_bound(self):
"""Returns end bound."""
return WindowFrameBound(self.window_frame.get_upper_bound())
class WindowFrameBound:
"""Defines a single window frame bound.
:py:class:`WindowFrame` typically requires a start and end bound.
"""
def __init__(self, frame_bound: expr_internal.WindowFrameBound) -> None:
"""Constructs a window frame bound."""
self.frame_bound = frame_bound
def get_offset(self) -> int | None:
"""Returns the offset of the window frame."""
return self.frame_bound.get_offset()
def is_current_row(self) -> bool:
"""Returns if the frame bound is current row."""
return self.frame_bound.is_current_row()
def is_following(self) -> bool:
"""Returns if the frame bound is following."""
return self.frame_bound.is_following()
def is_preceding(self) -> bool:
"""Returns if the frame bound is preceding."""
return self.frame_bound.is_preceding()
def is_unbounded(self) -> bool:
"""Returns if the frame bound is unbounded."""
return self.frame_bound.is_unbounded()
class CaseBuilder:
"""Builder class for constructing case statements.
An example usage would be as follows::
import datafusion.functions as f
from datafusion import lit, col
df.select(
f.case(col("column_a")
.when(lit(1), lit("One"))
.when(lit(2), lit("Two"))
.otherwise(lit("Unknown"))
)
"""
def __init__(self, case_builder: expr_internal.CaseBuilder) -> None:
"""Constructs a case builder.
This is not typically called by the end user directly. See
:py:func:`datafusion.functions.case` instead.
"""
self.case_builder = case_builder
def when(self, when_expr: Expr, then_expr: Expr) -> CaseBuilder:
"""Add a case to match against."""
return CaseBuilder(self.case_builder.when(when_expr.expr, then_expr.expr))
def otherwise(self, else_expr: Expr) -> Expr:
"""Set a default value for the case statement."""
return Expr(self.case_builder.otherwise(else_expr.expr))
def end(self) -> Expr:
"""Finish building a case statement.
Any non-matching cases will end in a `null` value.
"""
return Expr(self.case_builder.end())