feat(bigquery): add Google BigQuery integration#3341
Merged
waleedlatif1 merged 7 commits intostagingfrom Feb 26, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryAdded comprehensive Google BigQuery integration with 5 operations (query, list datasets, list tables, get table, insert rows). Implementation follows established patterns from other Google integrations with proper OAuth setup, block configuration, tool definitions, and documentation. Key Changes:
Minor Issues:
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User Selects BigQuery Operation] --> B{Operation Type?}
B -->|Query| C[Run SQL Query]
B -->|List Datasets| D[List Datasets]
B -->|List Tables| E[List Tables]
B -->|Get Table| F[Get Table Metadata]
B -->|Insert Rows| G[Insert Rows]
C --> H[Authenticate with Google]
D --> H
E --> H
F --> H
G --> H
H --> I[BigQuery API v2]
C --> J[Return: columns, rows, jobReference, cacheHit]
D --> K[Return: datasets, nextPageToken]
E --> L[Return: tables, totalItems, nextPageToken]
F --> M[Return: schema, numRows, numBytes]
G --> N[Return: insertedRows, errors]
Last reviewed commit: cd323d8 |
28e9cc7 to
cd323d8
Compare
Collaborator
Author
|
@greptile |
Collaborator
Author
|
@cursor review |
1ebb62f to
8ae58f9
Compare
8ae58f9 to
171f231
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Type of Change
Testing
Tested manually
Checklist