opteryx icon indicating copy to clipboard operation
opteryx copied to clipboard

✨ Evaluation Elimination

Open joocer opened this issue 1 year ago • 0 comments

If an evaluation isn't used, it may be able to be avoided, something like:

SELECT column 
FROM
   (
       SELECT MD5(column) AS hash, column
       FROM table
   )

The MD5 call isn't used so the effort to evaluate isn't wasted.

joocer avatar Sep 06 '24 13:09 joocer