Skip to content

Commit 92d22ed

Browse files
authored
Drop @ignore'd Calcite ITs from CalciteNoPushdownIT @suite (opensearch-project#5416)
Mirrors the trailing portion of opensearch-project#5414 onto feature/mustang-ppl-integration. The Gradle 9.4.1 wrapper bump (opensearch-project#5406) and the integTest exclude block for @ignore'd classes (opensearch-project#5407) already landed on this branch, but the matching cleanup of `CalciteNoPushdownIT` did not — the @suite still listed four classes that are now build-time excluded from integTest: - CalciteInformationSchemaCommandIT - CalciteJsonFunctionsIT - CalcitePrometheusDataSourceCommandsIT - CalciteShowDataSourcesCommandIT Leaving them in the suite means the JUnit runner attempts to load each class, finds it referenced from the suite, and registers a descriptor — which (combined with the class-level @ignore) reproduces the same TestEventReporterAsListener.started cast that the integTest exclude was meant to avoid. Dropping the entries here keeps the no-pushdown suite consistent with the exclude block: a class excluded at the build layer must not also appear in any @Suite.SuiteClasses list. No new tests are introduced or removed — the four classes are already @ignore'd and have been since they were written. This change is purely about keeping the no-pushdown suite metadata aligned with the exclusion pattern carried over from main. Signed-off-by: Kai Huang <ahkcs@amazon.com>
1 parent 59c728b commit 92d22ed

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

integ-test/src/test/java/org/opensearch/sql/calcite/CalciteNoPushdownIT.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@
4343
CalciteGeoIpFunctionsIT.class,
4444
CalciteGeoPointFormatsIT.class,
4545
CalciteHeadCommandIT.class,
46-
CalciteInformationSchemaCommandIT.class,
4746
CalciteIPComparisonIT.class,
4847
CalciteIPFunctionsIT.class,
49-
CalciteJsonFunctionsIT.class,
5048
CalciteLegacyAPICompatibilityIT.class,
5149
CalciteLikeQueryIT.class,
5250
CalciteMathematicalFunctionIT.class,
@@ -88,7 +86,6 @@
8886
CalcitePPLSortIT.class,
8987
CalcitePPLStringBuiltinFunctionIT.class,
9088
CalcitePPLTrendlineIT.class,
91-
CalcitePrometheusDataSourceCommandsIT.class,
9289
CalciteQueryAnalysisIT.class,
9390
CalciteRareCommandIT.class,
9491
CalciteRegexCommandIT.class,
@@ -99,7 +96,6 @@
9996
CalciteResourceMonitorIT.class,
10097
CalciteSearchCommandIT.class,
10198
CalciteSettingsIT.class,
102-
CalciteShowDataSourcesCommandIT.class,
10399
CalciteSortCommandIT.class,
104100
CalciteStatsCommandIT.class,
105101
CalciteSystemFunctionIT.class,

0 commit comments

Comments
 (0)