Skip to content

Commit 3295038

Browse files
committed
Fix binary value in new test
Signed-off-by: Mohit Godwani <mgodwan@amazon.com>
1 parent 2c6c825 commit 3295038

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

sandbox/plugins/composite-engine/src/internalClusterTest/java/org/opensearch/composite/CompositeDynamicMappingIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public void testDynamicMappingWithParquetPrimaryLuceneSecondary() throws Excepti
153153
assertEquals("All 10 Lucene docs should have __row_id__", 10, rowsWithRowId);
154154

155155
// Verify that the lucene index has the expected indexed fields (inverted index)
156-
assertLuceneIndexedFieldsPresent(luceneDir, Set.of("field_keyword", "dynamic_text", "dynamic_text.keyword"));
156+
assertLuceneIndexedFieldsPresent(luceneDir, Set.of("field_keyword", "dynamic_text"));
157157
ensureNoActiveMerges(indexName);
158158
}
159159

sandbox/qa/analytics-engine-coordinator/src/internalClusterTest/java/org/opensearch/analytics/resilience/SpillDisabledParallelismIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.opensearch.common.util.FeatureFlags;
2121
import org.opensearch.composite.CompositeDataFormatPlugin;
2222
import org.opensearch.index.engine.dataformat.stub.MockCommitterEnginePlugin;
23-
import org.opensearch.parquet.ParquetDataFormatPlugin;
23+
import org.opensearch.parquet.ParquetOnlyDataFormatPlugin;
2424
import org.opensearch.plugins.Plugin;
2525
import org.opensearch.plugins.PluginInfo;
2626
import org.opensearch.ppl.TestPPLPlugin;
@@ -72,7 +72,7 @@ protected Collection<PluginInfo> additionalNodePlugins() {
7272
return List.of(
7373
classpathPlugin(FlightStreamPlugin.class, List.of(ArrowBasePlugin.class.getName())),
7474
classpathPlugin(AnalyticsPlugin.class, Collections.emptyList()),
75-
classpathPlugin(ParquetDataFormatPlugin.class, Collections.emptyList()),
75+
classpathPlugin(ParquetOnlyDataFormatPlugin.class, Collections.emptyList()),
7676
classpathPlugin(DataFusionPlugin.class, List.of(AnalyticsPlugin.class.getName()))
7777
);
7878
}

sandbox/qa/analytics-engine-rest/src/test/java/org/opensearch/analytics/qa/ListAggregateMultiTypeIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private void provision() throws Exception {
140140
+ " \"double_value\": { \"type\": \"double\" },"
141141
+ " \"keyword_value\": { \"type\": \"keyword\" },"
142142
+ " \"text_value\": { \"type\": \"text\" },"
143-
+ " \"binary_value\": { \"type\": \"binary\" },"
143+
+ " \"binary_value\": { \"type\": \"binary\", \"store\": \"true\" },"
144144
+ " \"date_value\": { \"type\": \"date\", \"format\": \"yyyy-MM-dd HH:mm:ss\" },"
145145
+ " \"date_nanos_value\": { \"type\": \"date_nanos\" },"
146146
+ " \"ip_value\": { \"type\": \"ip\" }"

0 commit comments

Comments
 (0)