bito-code-review[bot] commented on PR #43337:
URL: https://github.com/apache/superset/pull/43337#issuecomment-5345085251
<!-- Bito Reply -->
The update to `superset/models/helpers.py` correctly sets
`result.sql_rowcount` to `len(df.index)` after the post-processing operations
have been executed. This ensures the row count on the result object reflects
the final state of the data frame.
**superset/models/helpers.py**
```
# Update result with processed data
result.df = df
result.sql_rowcount = len(df.index)
result.query = query
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]