Github user nickwallen commented on a diff in the pull request:
https://github.com/apache/metron/pull/832#discussion_r149185308
--- Diff:
metron-platform/metron-indexing/src/test/java/org/apache/metron/indexing/dao/SearchIntegrationTest.java
---
@@ -138,6 +137,46 @@
/**
* {
+ * "indices": [
+ * "snort",
+ * "bro"
+ * ],
+ * "query": "*",
+ * "from": 0,
+ * "size": 25,
+ * "sort": [
+ * {
+ * "field": "threat:triage:score",
+ * "sortOrder": "asc"
+ * }
+ * ]
+ * }
+ */
+ @Multiline
+ public static String sortAscendingWithMissingFields;
--- End diff --
I added two new queries to the integration tests to exercise this defect.
---