We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: from FooStream select symbol delete FooTable on FooTable.symbol in symbol;
Here, the ( FooTable.symbol in symbol ) will be treated as filter where symbol will be the table id and FooTable.symbol will be an expression.
The text was updated successfully, but these errors were encountered:
@niveathika Is this issue still valid ?
Sorry, something went wrong.
Yes, it is still valid, see https://github.com/niveathika/siddhi/blob/table-join-in/modules/siddhi-core/src/test/java/io/siddhi/core/query/table/DeleteFromTableTestCase.java#L338,
It is mainly validation improvement, the user should not be able to write queries with in operator.
No branches or pull requests
Description:
from FooStream
select symbol
delete FooTable
on FooTable.symbol in symbol;
Here, the ( FooTable.symbol in symbol ) will be treated as filter where symbol will be the table id and FooTable.symbol will be an expression.
The text was updated successfully, but these errors were encountered: