Skip to content

Commit

Permalink
fix: address lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vbarua committed Jan 9, 2025
1 parent 2d8b1b6 commit 5ea90b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/cases/comparison/is_false.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### SUBSTRAIT_SCALAR_TEST: v1.0
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml'

# 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
1 change: 1 addition & 0 deletions tests/cases/comparison/is_not_false.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### SUBSTRAIT_SCALAR_TEST: v1.0
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml'

# 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
1 change: 1 addition & 0 deletions tests/cases/comparison/is_not_true
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### SUBSTRAIT_SCALAR_TEST: v1.0
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml'

# 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
1 change: 1 addition & 0 deletions tests/cases/comparison/is_true.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### SUBSTRAIT_SCALAR_TEST: v1.0
### SUBSTRAIT_INCLUDE: '/extensions/functions_comparison.yaml'

# 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

0 comments on commit 5ea90b2

Please sign in to comment.