Re: Conditional branching in Table API
Hi Chen, with Flink 1.2, conditions in select clauses are supported in the Table API with the following syntax: table.select('name, 'age, ('yearOfBirth < 1997) ? ("adult", "teenager") ) See also the documentation of built-in functions [1]. Best, Fabian [1] https://ci.apache.org/projects/flink/
Conditional branching in Table API
Hi there, Is there any jira related to conditional branching support in table api? https://calcite.apache.org/docs/reference.html#conditional-functions-and-operators Thanks Chen