chore: rollback using rowid(sqlite3 unsupported)

This commit is contained in:
Kould
2025-01-14 22:56:49 +08:00
parent 5305a9d0fd
commit 1bf651bd37
3 changed files with 25 additions and 39 deletions

View File

@@ -114,14 +114,6 @@ do_execsql_test left-join-row-id {
13|
14|}
do_execsql_test left-join-row-id-2 {
select u.rowid, p.rowid from users u left join products as p using(rowid) where u.rowid >= 10 limit 5;
} {10|10
11|11
12|
13|
14|}
do_execsql_test left-join-constant-condition-true {
select u.first_name, p.name from users u left join products as p on true limit 1;
} {Jamie|hat}