fix npe for null stats (#2253)
This commit is contained in:
committed by
lichaoyong
parent
46005bf6ba
commit
aedccc4ec4
@ -46,7 +46,7 @@ public:
|
||||
RowsetSharedPtr rowset() override { return std::dynamic_pointer_cast<Rowset>(_rowset); }
|
||||
|
||||
int64_t filtered_rows() override {
|
||||
return _context->stats->rows_del_filtered;
|
||||
return _stats->rows_del_filtered;
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user