Handling OOM error in ExpressionVector setup by reducing number of rows (#12186)

* Handling OOM error in ExpressionVector setup by reducing number of rows

* Removing row size to 10K in sanity tests
This commit is contained in:
somu-imply 2022-01-24 08:37:13 -08:00 committed by GitHub
parent dc1703d5f9
commit cc8b9c0b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ public class ExpressionVectorSelectorsTest
"concat(string1, nonexistent)"
);
private static final int ROWS_PER_SEGMENT = 100_000;
private static final int ROWS_PER_SEGMENT = 10_000;
private static QueryableIndex INDEX;
private static Closer CLOSER;

View File

@ -93,7 +93,7 @@ public class SqlVectorizedExpressionSanityTest extends InitializedNullHandlingTe
"SELECT long5 IS NULL, long3 IS NOT NULL, count(*) FROM foo GROUP BY 1,2 ORDER BY 3"
);
private static final int ROWS_PER_SEGMENT = 100_000;
private static final int ROWS_PER_SEGMENT = 10_000;
private static QueryableIndex INDEX;
private static Closer CLOSER;