mirror of
https://github.com/apache/superset.git
synced 2026-04-21 00:54:44 +00:00
feat(SIP-95): catalogs in SQL Lab and datasets (#28376)
This commit is contained in:
@@ -48,7 +48,7 @@ export type QueryPayload = {
|
||||
description?: string;
|
||||
id?: string;
|
||||
remoteId?: number;
|
||||
} & Pick<QueryEditor, 'dbId' | 'schema' | 'sql'>;
|
||||
} & Pick<QueryEditor, 'dbId' | 'catalog' | 'schema' | 'sql'>;
|
||||
|
||||
const Styles = styled.span`
|
||||
span[role='img'] {
|
||||
@@ -78,6 +78,7 @@ const SaveQuery = ({
|
||||
'dbId',
|
||||
'latestQueryId',
|
||||
'queryLimit',
|
||||
'catalog',
|
||||
'schema',
|
||||
'selectedText',
|
||||
'sql',
|
||||
@@ -115,6 +116,7 @@ const SaveQuery = ({
|
||||
description,
|
||||
dbId: query.dbId ?? 0,
|
||||
sql: query.sql,
|
||||
catalog: query.catalog,
|
||||
schema: query.schema,
|
||||
templateParams: query.templateParams,
|
||||
remoteId: query?.remoteId || undefined,
|
||||
|
||||
Reference in New Issue
Block a user