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
|
||||
|
||||
Reference in New Issue
Block a user