Login  Register

[jira] [Created] (FLINK-22983) Support lazy evaluation in Flink SQL

Posted by Shang Yuanchun (Jira) on Jun 14, 2021; 1:27pm
URL: http://deprecated-apache-flink-mailing-list-archive.368.s1.nabble.com/jira-Created-FLINK-22983-Support-lazy-evaluation-in-Flink-SQL-tp51364.html

Maciej Bryński created FLINK-22983:
--------------------------------------

             Summary: Support lazy evaluation in Flink SQL
                 Key: FLINK-22983
                 URL: https://issues.apache.org/jira/browse/FLINK-22983
             Project: Flink
          Issue Type: Bug
          Components: Table SQL / Runtime
    Affects Versions: 1.13.1
            Reporter: Maciej Bryński


Currently when there is logical condition in Flink SQL we're calculating all arguments.

Example:
{code:java}
SELECT n > 0 AND n > 100 {code}
This will trigger both checks even when n > 0.

Same for AND
{code:java}
SELECT n > 0 AND n > 100 {code}
will trigger n > 100 check for n <= 0

 

I think we should support lazy condition evaluation.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)