Skip to content

Commit 7f380c0

Browse files
hqbhohofindepi
authored andcommitted
Document IDENTICAL_OPERATOR_FUNCTION_NAME in StandardFunctions
1 parent 4501b99 commit 7f380c0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core/trino-spi/src/main/java/io/trino/spi/expression/StandardFunctions.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ private StandardFunctions() {}
5252
public static final FunctionName LESS_THAN_OR_EQUAL_OPERATOR_FUNCTION_NAME = new FunctionName("$less_than_or_equal");
5353
public static final FunctionName GREATER_THAN_OPERATOR_FUNCTION_NAME = new FunctionName("$greater_than");
5454
public static final FunctionName GREATER_THAN_OR_EQUAL_OPERATOR_FUNCTION_NAME = new FunctionName("$greater_than_or_equal");
55+
/**
56+
* $identical function is equivalent to the SQL operator "IS NOT DISTINCT FROM".
57+
*/
5558
public static final FunctionName IDENTICAL_OPERATOR_FUNCTION_NAME = new FunctionName("$identical");
5659

5760
/**

0 commit comments

Comments
 (0)