Details
-
Bug
-
Status: Confirmed (View Workflow)
-
Critical
-
Resolution: Unresolved
-
11.8.1
-
None
Description
I run the following case, in which the query should return an empty result.
CREATE TABLE t1 (c1 TINYINT); |
INSERT INTO t1 (c1) VALUES (1); |
SELECT c1 FROM t1 WHERE ((c1) NOT IN (FROM_DAYS(0))) NOT IN (1); -- actual: {1}, expected: {} |
I try other integer data types like follows, in which the `BIGINT` data type returns the expected data type.