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
I am trying to query a stream called k8s-events which runs into issues due to the stream having a special character in its name
k8s-events
./pb query run "select * from k8s-events" --from=3d --to=now Datafusion Error: SQL error: ParserError("Expected end of statement, found: -")
If I wrap the table name with escaped double quotes, I get a different error (this happens with all stream names)
./pb query run "select * from \"k8s-events\"" --from=3d --to= now Json deserialize error: expected `,` or `}` at line 2 column 30
The text was updated successfully, but these errors were encountered:
AdheipSingh
No branches or pull requests
I am trying to query a stream called
k8s-events
which runs into issues due to the stream having a special character in its nameIf I wrap the table name with escaped double quotes, I get a different error (this happens with all stream names)
The text was updated successfully, but these errors were encountered: