Skip to content

Commit 7439292

Browse files
committed
fix: Update default SQL integration ID in Deepnote notebook command listener
- Changed the default value of `sql_integration_id` to 'deepnote-dataframe-sql' to ensure proper integration with SQL functionalities. Signed-off-by: Tomas Kislan <tomas@kislan.sk>
1 parent 88c4b00 commit 7439292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/deepnoteNotebookCommandListener.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class DeepnoteNotebookCommandListener implements IExtensionSyncActivation
188188
const defaultMetadata: DeepnoteSqlMetadata = {
189189
deepnote_variable_name: deepnoteVariableName,
190190
deepnote_return_variable_type: 'dataframe',
191-
sql_integration_id: ''
191+
sql_integration_id: 'deepnote-dataframe-sql'
192192
};
193193

194194
// Determine the index where to insert the new cell (below current selection or at the end)

0 commit comments

Comments
 (0)