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
String q = String.format("truncate table %s.%s", getDatasetId(), getTableId()); runQuery(bigQuery, q)
%s.%s
Error
failed to truncate DELETE FROM `test-dataset.records`: no such table: test-dataset.records
table should be truncated
create a table and try to truncate it
No response
The text was updated successfully, but these errors were encountered:
String q = String.format("delete from `test-dataset.records` where true", getDatasetId(), getTableId()); runQuery(bigQuery, q)
this works as expected
Sorry, something went wrong.
No branches or pull requests
What happened?
String q = String.format("truncate table
%s.%s
", getDatasetId(), getTableId());runQuery(bigQuery, q)
Error
What did you expect to happen?
table should be truncated
How can we reproduce it (as minimally and precisely as possible)?
create a table and try to truncate it
Anything else we need to know?
No response
The text was updated successfully, but these errors were encountered: