mirror of
https://github.com/apache/superset.git
synced 2026-04-21 00:54:44 +00:00
* [sqllab] add support for results backends Long running SQL queries (beyond the scope of a web request) can now use a k/v store to hold their result sets. * Addressing comments, fixed js tests * Fixing mysql has gone away * Adressing more comments * Touchups
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
export const STATE_BSSTYLE_MAP = {
|
|
failed: 'danger',
|
|
pending: 'info',
|
|
fetching: 'info',
|
|
running: 'warning',
|
|
stopped: 'danger',
|
|
success: 'success',
|
|
};
|
|
|
|
export const DATA_PREVIEW_ROW_COUNT = 100;
|
|
|
|
export const STATUS_OPTIONS = ['success', 'failed', 'running'];
|