We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec433f4 commit 5233ec4Copy full SHA for 5233ec4
1 file changed
integ-test/src/test/java/org/opensearch/sql/legacy/TestUtils.java
@@ -84,7 +84,7 @@ static void applyIndexCreationSettings(JSONObject jsonObject) {
84
indexSettings.put("pluggable.dataformat.enabled", true);
85
indexSettings.put("pluggable.dataformat", "composite");
86
indexSettings.put("composite.primary_data_format", "parquet");
87
- indexSettings.put("composite.secondary_data_formats", new org.json.JSONArray());
+ indexSettings.put("composite.secondary_data_formats", new org.json.JSONArray().put("lucene"));
88
settings.put("index", indexSettings);
89
jsonObject.put("settings", settings);
90
}
0 commit comments