We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4501b99 commit 7f380c0Copy full SHA for 7f380c0
core/trino-spi/src/main/java/io/trino/spi/expression/StandardFunctions.java
@@ -52,6 +52,9 @@ private StandardFunctions() {}
52
public static final FunctionName LESS_THAN_OR_EQUAL_OPERATOR_FUNCTION_NAME = new FunctionName("$less_than_or_equal");
53
public static final FunctionName GREATER_THAN_OPERATOR_FUNCTION_NAME = new FunctionName("$greater_than");
54
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
+ */
58
public static final FunctionName IDENTICAL_OPERATOR_FUNCTION_NAME = new FunctionName("$identical");
59
60
/**
0 commit comments