-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
73 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
### SUBSTRAIT_SCALAR_TEST: v1.0 | ||
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml' | ||
|
||
# basic is_false | ||
# basic: Basic examples without any special cases | ||
is_false(true::bool) = false::bool | ||
is_false(false::bool) = true::bool | ||
is_false(null::bool) = false::bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
### SUBSTRAIT_SCALAR_TEST: v1.0 | ||
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml' | ||
|
||
# basic is_not_false | ||
# basic: Basic examples without any special cases | ||
is_not_false(true::bool) = true::bool | ||
is_not_false(false::bool) = false::bool | ||
is_not_false(null::bool) = true::bool |
2 changes: 1 addition & 1 deletion
2
tests/cases/comparison/is_not_true → tests/cases/comparison/is_not_true.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
### SUBSTRAIT_SCALAR_TEST: v1.0 | ||
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml' | ||
|
||
# basic is_not_true | ||
# basic: Basic examples without any special cases | ||
is_not_true(true::bool) = false::bool | ||
is_not_true(false::bool) = true::bool | ||
is_not_true(null::bool) = true::bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
### SUBSTRAIT_SCALAR_TEST: v1.0 | ||
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml' | ||
|
||
# basic is_true | ||
# basic: Basic examples without any special cases | ||
is_true(true::bool) = true::bool | ||
is_true(false::bool) = false::bool | ||
is_true(null::bool) = false::bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters