-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
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
fix: notebook updates #1485
fix: notebook updates #1485
Changes from 3 commits
44947e2
46e51ea
ee2c227
2e9a616
298b940
8ba65b6
10912ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,7 @@ export interface QueryPanelStateProps { | |
columnNames: string[]; | ||
columnTypes: string[]; | ||
raw_sql: string; | ||
compiled_sql: string; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Property usage needs to be updated in components The verification reveals that while Key locations requiring updates:
🔗 Analysis chainLGTM! Verify usage in components. The addition of Let's verify the property usage in components: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check if components are properly handling the new compiled_sql property
# Expected: Components should destructure or access this property from queryResults
# Search for components accessing queryResults
rg -t tsx -t ts "queryResults[.?]" webview_panels/src/modules/queryPanel
# Search for specific compiled_sql usage
rg -t tsx -t ts "compiled_sql" webview_panels/src/modules/queryPanel
Length of output: 199 Script: #!/bin/bash
# Let's try with correct ripgrep file type options and more specific paths
# Search for queryResults usage
rg --type-add 'ts:*.{ts,tsx}' -t ts "queryResults[.?]" webview_panels/src/modules/queryPanel/
# Search for compiled_sql usage
rg --type-add 'ts:*.{ts,tsx}' -t ts "compiled_sql" webview_panels/src/modules/queryPanel/
# Also search for any QueryResults type usage to understand the context better
rg --type-add 'ts:*.{ts,tsx}' -t ts "QueryResults" webview_panels/src/modules/queryPanel/
Length of output: 3565 |
||
}; | ||
queryExecutionInfo?: { elapsedTime: number }; | ||
queryResultsError?: { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be synced on extension load from saas