From 379c6d1f52e1d311867c4f789dc389da1d9af898 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 6 Aug 2023 09:48:11 +0200 Subject: Merging upstream version 17.9.1. Signed-off-by: Daniel Baumann --- sqlglot/dataframe/sql/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sqlglot/dataframe/sql/functions.py') diff --git a/sqlglot/dataframe/sql/functions.py b/sqlglot/dataframe/sql/functions.py index 1549a07..4002cfe 100644 --- a/sqlglot/dataframe/sql/functions.py +++ b/sqlglot/dataframe/sql/functions.py @@ -386,7 +386,7 @@ def input_file_name() -> Column: def isnan(col: ColumnOrName) -> Column: - return Column.invoke_anonymous_function(col, "ISNAN") + return Column.invoke_expression_over_column(col, expression.IsNan) def isnull(col: ColumnOrName) -> Column: -- cgit v1.2.3