Ticket Hash: | 1f6f353b684fc708c167f9c025d876c417e2d083 | ||
Title: | Segfault in sqlite3VdbeExec | ||
Status: | Fixed | Type: | Code_Defect |
Severity: | Minor | Priority: | Low |
Subsystem: | Unknown | Resolution: | Fixed |
Last Modified: | 2020-06-06 19:36:24 | ||
Version Found In: |
User Comments: | ||||
yongheng added on 2020-06-06 17:03:48:
Seems the root cause is not fixed. POC: --- CREATE TABLE a(b, c); SELECT sum(c) OVER(), sum(coalesce(max(c), b)) OVER(ORDER BY c) FROM a; --- |