1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix a problem caused by a non-aggregate function with an OVER clause in a multi-row VALUES clause.

FossilOrigin-Name: 10ee6fcba08ab1281235197602148fe062560e1d5034a477b8e7b574dd3e2907
This commit is contained in:
dan
2024-03-18 10:54:48 +00:00
parent 54bf109e80
commit 2f4a8cc2d8
4 changed files with 15 additions and 9 deletions

View File

@ -415,5 +415,10 @@ do_execsql_test 13.0 {
FROM t1;
} {xyz}
do_catchsql_test 13.1 {
VALUES(300), (zeroblob(300) OVER win);
} {1 {zeroblob() may not be used as a window function}}
finish_test