From 90a4fc6bb86d7e282115c43b015cfc6e8995f3f8 Mon Sep 17 00:00:00 2001 From: Pere Diaz Bou Date: Tue, 9 Jul 2024 11:23:42 +0200 Subject: [PATCH] test: cross-join-specific-columns Signed-off-by: Pere Diaz Bou --- testing/all.test | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/all.test b/testing/all.test index 5957f8bcf..b0c47f75e 100755 --- a/testing/all.test +++ b/testing/all.test @@ -69,3 +69,7 @@ do_execsql_test pragma-cache-size { do_execsql_test cross-join { select * from users, products limit 1; } {1|Jamie|Foster|dylan00@example.com|496-522-9493|62375\ Johnson\ Rest\ Suite\ 322|West\ Lauriestad|IL|35865|94|1|hat|79} + +do_execsql_test cross-join-specific-columns { + select first_name, price from users, products limit 1; +} {Jamie|79}