1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Add test case to window8.test. Also fix an error in a comment in window.c.

FossilOrigin-Name: 2925bfa5971c8557ecaa6ac18df0825ebbbd1622017509e83451d90640146fa8
This commit is contained in:
dan
2019-08-30 19:45:03 +00:00
parent db3a32ed1c
commit 9889ede28d
5 changed files with 45 additions and 13 deletions

View File

@@ -1998,8 +1998,8 @@ static void windowCodeRangeTest(
** generated is equivalent to:
**
** if( reg1 IS NULL ){
** if( op==OP_Gt ) goto lbl;
** if( op==OP_Ge && reg2 IS NOT NULL ) goto lbl;
** if( op==OP_Ge ) goto lbl;
** if( op==OP_Gt && reg2 IS NOT NULL ) goto lbl;
** if( op==OP_Le && reg2 IS NULL ) goto lbl;
** }else if( reg2 IS NULL ){
** if( op==OP_Le ) goto lbl;