From db0e2ea54fe3d5dae657d29a8dd542c31783a113 Mon Sep 17 00:00:00 2001 From: jussisaurio Date: Sat, 5 Oct 2024 17:10:46 +0300 Subject: [PATCH] Change another compat test to work around sqlite's weird choice to use the age index --- testing/select.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/select.test b/testing/select.test index ced47d820..d69f3c07e 100755 --- a/testing/select.test +++ b/testing/select.test @@ -44,8 +44,8 @@ do_execsql_test table-star { } {1|hat|79.0|hat} do_execsql_test table-star-2 { - select p.*, u.age from users u join products p limit 1; -} {1|hat|79.0|94} + select p.*, u.first_name from users u join products p on u.id = p.id limit 1; +} {1|hat|79.0|Jamie} do_execsql_test seekrowid { select * from users u where u.id = 5;