bigquery-runner
bigquery-runner copied to clipboard
An extension to query BigQuery directly and view the results in VSCode.
Thank you very much for creating this amazing extension. Would you mind adding features? 1. Table search function Web console provide table search functions I have to work with multiple...
Based on the issues raised I believe the extension is yet to support killing / stopping a long running BQ job. This would be helpful as a fallback / failsafe...
My company has policy that we are forced to switch to a new Google project for all personal development every 9 months. So I have a project A, which worked...
``` SELECT * FROM `region-asia-southeast1.INFORMATION_SCHEMA.JOBS` ORDER BY creation_time DESC LIMIT 5; ``` If I run this bigquery above in VSCode using this runner extension, there's an error in the bottom-right,...
Hello, When a request fails, I get the message: "NoJob: Error: A failure occurred during this request." instead of the BigQuery message explaining the error's cause. Is there a way...
Thank you for this great project! It has been incredibly useful for my workflow. Would it be useful to allow running queries directly from code blocks in Markdown when the...
Hi, thanks a lot for publishing this extension! I came across a possible improvement and was wondering if you would consider implementing this enhancement: The current [implementation](https://github.com/minodisk/bigquery-runner/blob/796bc12564efcd079d30946f810366b63c9453bc/packages/extension/src/previewer.ts#L25-L26) of the preview...
The current [implementation](https://github.com/minodisk/bigquery-runner/blob/796bc12564efcd079d30946f810366b63c9453bc/packages/extension/src/previewer.ts#L25-L26) of the preview functionality uses a query along the lines of `SELECT * FROM {LIMIT }` to visualize (a subset of) the rows of a table. Querying...