From e7f9a5bd65eae96475bc0b9d6d81856c0bc2645e Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Mon, 24 May 2021 10:50:35 +0300 Subject: [PATCH] MXS-3535 Add test that reveals the problem qc_sqlite does not collect from ON. --- query_classifier/test/maxscale.test | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/query_classifier/test/maxscale.test b/query_classifier/test/maxscale.test index 38451041a..95351f324 100644 --- a/query_classifier/test/maxscale.test +++ b/query_classifier/test/maxscale.test @@ -171,3 +171,7 @@ SELECT trim(@@server_id); SELECT trim("text"); SELECT trim(BOTH " " FROM " text"); SELECT trim(BOTH FROM " text"); + +# MXS-3535 +# qc_sqlite misses symbols/vars used in an ON. +select E.id from bill_base as T inner join pb_meta_filter_item on A.itemName = @cFilterItemName;