mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
Add schema name to output column in query history (#1790)
* Add schema name to output column in query history * Replace line break with dot between schema and table name
This commit is contained in:
@@ -123,7 +123,7 @@ class QueryTable extends React.PureComponent {
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
q.output = q.tempTable;
|
||||
q.output = [q.schema, q.tempTable].filter((v) => (v)).join('.');
|
||||
}
|
||||
q.progress = (
|
||||
<ProgressBar
|
||||
|
||||
@@ -74,7 +74,7 @@ class SqlEditor extends React.PureComponent {
|
||||
sqlEditorId: qe.id,
|
||||
tab: qe.title,
|
||||
schema: qe.schema,
|
||||
tempTableName: this.state.ctas,
|
||||
tempTableName: ctas ? this.state.ctas : '',
|
||||
runAsync,
|
||||
ctas,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user