mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
fix: show the total row count in the SQL Lab Query History tab when limited by DISPLAY_MAX_ROW (#19054)
This commit is contained in:
@@ -332,7 +332,7 @@ export default function sqlLabReducer(state = {}, action) {
|
||||
endDttm: now(),
|
||||
progress: 100,
|
||||
results: action.results,
|
||||
rows: action?.results?.data?.length,
|
||||
rows: action?.results?.query?.rows || 0,
|
||||
state: 'success',
|
||||
limitingFactor: action?.results?.query?.limitingFactor,
|
||||
tempSchema: action?.results?.query?.tempSchema,
|
||||
|
||||
Reference in New Issue
Block a user