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

Fix problems with window frames that use ORDER BY ... NULLS LAST etc.

FossilOrigin-Name: 75d665a494dd7d6e77d5a80af386ee5accc0a53416d5493424dc0fef6c7b01a0
This commit is contained in:
dan
2019-08-19 19:59:50 +00:00
parent 9105fd5189
commit ae8e45cb0c
9 changed files with 1600 additions and 139 deletions

View File

@ -15,8 +15,6 @@ set testdir [file dirname $argv0]
source $testdir/tester.tcl
set testprefix nulls1
if 1 {
do_execsql_test 1.0 {
DROP TABLE IF EXISTS t3;
CREATE TABLE t3(a INTEGER);
@ -55,8 +53,6 @@ for {set a 0} {$a < 3} {incr a} {
}
}
}
#-------------------------------------------------------------------------
reset_db
do_execsql_test 2.0 {
@ -84,6 +80,7 @@ do_execsql_test 2.2 {
}
#-------------------------------------------------------------------------
#
reset_db
do_execsql_test 3.0 {
CREATE TABLE t1(a, b, c, d, UNIQUE (b));
@ -121,5 +118,4 @@ do_execsql_test 3.2 {
400 300
}
finish_test