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
When registering C-SPARQL queries, the parser throws an error at the FROM STREAM keywords.
FROM STREAM
The grammar in https://github.com/streamreasoning/CSPARQL-engine/blob/master/csparql-core/Grammar/master.jj shows the following entry: <FROM: " from ">. Note the whitespace before "from": Adding this whitespace in the query works fine, i.e. FROM STREAM.
<FROM: " from ">
The text was updated successfully, but these errors were encountered:
remove extra space before FROM token (fixes streamreasoning#15)
26f6212
mbalduini
No branches or pull requests
When registering C-SPARQL queries, the parser throws an error at the
FROM STREAM
keywords.The grammar in https://github.com/streamreasoning/CSPARQL-engine/blob/master/csparql-core/Grammar/master.jj shows the following entry:
<FROM: " from ">
. Note the whitespace before "from": Adding this whitespace in the query works fine, i.e.FROM STREAM
.The text was updated successfully, but these errors were encountered: