File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ private function buildResult($it): QueryPlanResult
9191 } else {
9292 if (null !== $ row ['type ' ] && 'all ' === strtolower ($ row ['type ' ]) && $ row ['rows ' ] >= $ allowedRowsNotRequiringIndex ) {
9393 $ result ->addRow ($ row ['table ' ], QueryPlanResult::TABLE_SCAN );
94- } elseif (true === $ allowedUnindexedReads && $ row ['rows ' ] >= self ::DEFAULT_UNINDEXED_READS_THRESHOLD ) {
94+ } elseif (true === $ allowedUnindexedReads && $ row ['rows ' ] >= QueryPlanAnalyzer ::DEFAULT_UNINDEXED_READS_THRESHOLD ) {
9595 $ result ->addRow ($ row ['table ' ], QueryPlanResult::UNINDEXED_READS );
9696 } elseif (\is_int ($ allowedUnindexedReads ) && $ row ['rows ' ] >= $ allowedUnindexedReads ) {
9797 $ result ->addRow ($ row ['table ' ], QueryPlanResult::UNINDEXED_READS );
You can’t perform that action at this time.
0 commit comments