You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following SQL statements create a table, insert sample data, and define a view:
CREATE TABLE `t1` (
`c1` int
);
INSERT INTO `t1` VALUES (1),(2);
CREATE VIEW `v1` ( `c_1`, `c_2`, `c_3`, `c_4`, `c_5`, `c_6`) AS
SELECT
`ref_0`.`c1` AS `c_1`,
2 AS `c_2`,
3 AS `c_3`,
(NULL)!=((LAST_VALUE(22) OVER (PARTITION BY `ref_0`.`c1` ORDER BY `ref_0`.`c1`))) AS `c_4`,
5 AS `c_5`,
`ref_0`.`c1` AS `c_6`
FROM `t1` AS `ref_0`
ORDER BY `c_1`, `c_2`,`c_3`,`c_4`,`c_5`,`c_6` LIMIT 164 ;
Then, executing the following queries produces inconsistent and unexpected behavior:
Query 1: Selecting all columns from the view
1. Minimal reproduce step (Required)
The following SQL statements create a table, insert sample data, and define a view:
Then, executing the following queries produces inconsistent and unexpected behavior:
Query 1: Selecting all columns from the view
Output:
Query 2: Selecting specific columns (c_1, c_2, c_3, c_4) from the view
Unexpected Output:
Query 3: Selecting only c_1 from the view
Unexpected Error:
ERROR 1105 (HY000): runtime error: index out of range [4] with length 2
2. What did you expect to see? (Required)
The results should be consistent regardless of the selected columns.
The second query should return the same c_1 values as the first query (1 and 2), not 22.
The third query should not cause a runtime error.
3. What did you see instead (Required)
The second query produced an incorrect c_1 value (22 instead of 1 and 2).
The third query resulted in a runtime error: index out of range [4] with length 2.
4. What is your TiDB version? (Required)
8.0.11-TiDB
master b6141ec
GoVersion: go1.23.4
Race Enabled: false
Check Table Before Drop: false
Store: unistore |
The text was updated successfully, but these errors were encountered: