Weijun-H commented on code in PR #15773:
URL: https://github.com/apache/datafusion/pull/15773#discussion_r2051622969


##########
benchmarks/queries/clickbench/README.md:
##########
@@ -155,7 +155,7 @@ WHERE
         THEN split_part(split_part("URL", 'resolution=', 2), '&', 1)::INT 
         ELSE 0 
     END > 1920 -- Extract and validate resolution parameter
-    AND levenshtein("UTMSource", "UTMCampaign") < 3 -- Verify UTM parameter 
similarity
+    AND levenshtein(CAST("UTMSource" AS STRING), CAST("UTMCampaign" AS 
STRING)) < 3 -- Verify UTM parameter similarity

Review Comment:
   ```suggestion
       AND levenshtein('UTMSource', 'UTMCampaign') < 3 -- Verify UTM parameter 
similarity
   ```
   UPDATE:
   ignore this suggection



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to