mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-27 20:41:58 +03:00
In the nextchar.c extension, allow the second argument to the next_char()
function to be a subquery. FossilOrigin-Name: 59b9fa223681a7329533b350be7bf5a0a3609255
This commit is contained in:
@ -95,6 +95,9 @@ do_test 1.10 {
|
||||
do_execsql_test 1.11 {
|
||||
SELECT next_char('re','vocab','w');
|
||||
} {a}
|
||||
do_execsql_test 1.11sub {
|
||||
SELECT next_char('re','(SELECT w AS x FROM vocab)','x');
|
||||
} {a}
|
||||
do_execsql_test 1.12 {
|
||||
SELECT next_char('r','vocab','w');
|
||||
} {ae}
|
||||
|
Reference in New Issue
Block a user