From b03c0a065169f1f765adbb0a8c31ead59055f217 Mon Sep 17 00:00:00 2001 From: Ankita Victor Date: Mon, 15 Apr 2024 13:18:30 +0530 Subject: [PATCH] Remove check in HashProbe.h --- velox/exec/HashProbe.h | 1 - 1 file changed, 1 deletion(-) diff --git a/velox/exec/HashProbe.h b/velox/exec/HashProbe.h index e4eba2589f3c..997847fbb057 100644 --- a/velox/exec/HashProbe.h +++ b/velox/exec/HashProbe.h @@ -470,7 +470,6 @@ class HashProbe : public Operator { // passed the filter, it never will, process it as a miss. // We're guaranteed to have space, at least the last row was never // written out since it was a miss. - VELOX_CHECK_GE(freeOutputRows, 0); onMiss(currentRow); freeOutputRows--; }