Assuming I set up my blob_client correctly (with the right storage account key, url, container name, and blob name) why is my python query code failing? The file in blob is a JSON.
query_expression = "SELECT COUNT(*) from blobdata"
input_format = DelimitedJsonDialect(delimiter=',')
reader = blob_client.query_blob(query_expression, on_error=on_error, blob_format=input_format)
content = reader.readall()
print(content)
Error: azure.core.exceptions.HttpResponseError: Invalid path for JSON-formatted input.
additionally what should the table in the query string be?