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
Issue tracker is ONLY used for reporting bugs. New features should be discussed on our discussion
SQL Case
- id: 0desc: window query after last join with a table, index hasn't been optimizeddb: db1mode: rtidb-unsupporttags: ["TODO", "@tobe @zekai","Failed to merge fields 'col0' and 'col0'. Failed to merge incompatible data types string and int"]sql: | SELECT sum(t1.col1) over w1 as sum_t1_col1, str1 as t2_str1 FROM t1 last join t2 order by t2.col1 on t1.col1 = t2.col1 and t1.col2 = t2.col0 WINDOW w1 AS ( PARTITION BY t1.col2 ORDER BY t1.col1 ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW ) limit 10;inputs:
- name: t1columns: ["col0 string", "col1 bigint", "col2 int"]indexs: ["index1:col0:col1"]rows:
- ["0", 1, 5]
- ["0", 2, 5]
- name: t2columns: ["str0 string", "str1 string", "col0 int", "col1 bigint"]indexs: ["index2:str0:col1"]rows:
- ["2", "EEEEE", 55, 5]
- ["1", "DDDD", 55, 4]
- ["1", "CCC", 55, 3]expect:
success: true
Expected Behavior
Compile and run success in OpenMLDB-batch
Current Behavior
Failed to merge fields 'col0' and 'col0'. Failed to merge incompatible data types string and int
Possible Solution
Steps to Reproduce
Context (Environment)
Detailed Description
Possible Implementation
The text was updated successfully, but these errors were encountered:
Issue tracker is ONLY used for reporting bugs. New features should be discussed on our discussion
SQL Case
Expected Behavior
Compile and run success in OpenMLDB-batch
Current Behavior
Possible Solution
Steps to Reproduce
Context (Environment)
Detailed Description
Possible Implementation
The text was updated successfully, but these errors were encountered: