mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Ensure that all the new window-function keywords can still be used as SQL identifiers.
FossilOrigin-Name: a6d61dfd4780eccfce5f7a5ead6c04e3b78bc4a461551fd7dd602550e0d51084
This commit is contained in:
@ -924,6 +924,20 @@ do_execsql_test 20.3.2 {
|
||||
) FROM t1 ORDER BY a ASC;
|
||||
} {{} 200 {} 200 1 3 2 6 3 10 4 14 5 12 a 6 b 7 c 8 d 9 e 10}
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
do_execsql_test 21.0 {
|
||||
CREATE TABLE keyword_tab(
|
||||
current, exclude, filter, following, groups, no, others, over,
|
||||
partition, preceding, range, ties, unbounded, window
|
||||
);
|
||||
}
|
||||
do_execsql_test 21.1 {
|
||||
SELECT
|
||||
current, exclude, filter, following, groups, no, others, over,
|
||||
partition, preceding, range, ties, unbounded, window
|
||||
FROM keyword_tab
|
||||
}
|
||||
|
||||
finish_test
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user