summaryrefslogtreecommitdiff
path: root/src/main/webapp
diff options
context:
space:
mode:
authorRyan Campbell <ryanjcampbell@google.com>2017-09-20 12:58:24 -0700
committerRyan Campbell <ryanjcampbell@google.com>2017-09-20 12:58:24 -0700
commitf87874afedf119adbf5991cc95fb25b7b75f688e (patch)
tree6bd8ab8369518894f8e1deb66e9b735e1e5fc552 /src/main/webapp
parentab29e0fcb67186ac1ed366d66cb23b73a3545aac (diff)
downloaddashboard-f87874afedf119adbf5991cc95fb25b7b75f688e.tar.gz
Create indexes for inequality count filtering.
Create additional indexing to allow for inequality filtering on pass/fail count for both test runs and test plan runs. Test: staging Bug: 65953869 Change-Id: Ie6ba624f1af87c47b1ff1dcebbc1cf33e5899518
Diffstat (limited to 'src/main/webapp')
-rw-r--r--src/main/webapp/WEB-INF/datastore-indexes.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/webapp/WEB-INF/datastore-indexes.xml b/src/main/webapp/WEB-INF/datastore-indexes.xml
index f8d66c7..a7234e6 100644
--- a/src/main/webapp/WEB-INF/datastore-indexes.xml
+++ b/src/main/webapp/WEB-INF/datastore-indexes.xml
@@ -28,6 +28,14 @@
<property name="__key__" direction="desc"/>
</datastore-index>
+ <datastore-index kind="TestPlanRun" ancestor="true" source="manual">
+ <property name="passCount" direction="asc"/>
+ </datastore-index>
+
+ <datastore-index kind="TestPlanRun" ancestor="true" source="manual">
+ <property name="failCount" direction="asc"/>
+ </datastore-index>
+
<datastore-index kind="TestStatus" ancestor="false" source="manual">
<property name="failCount" direction="asc"/>
<property name="passCount" direction="asc"/>
@@ -52,6 +60,14 @@
<property name="__key__" direction="desc"/>
</datastore-index>
+ <datastore-index kind="TestRun" ancestor="true" source="manual">
+ <property name="passCount" direction="asc"/>
+ </datastore-index>
+
+ <datastore-index kind="TestRun" ancestor="true" source="manual">
+ <property name="failCount" direction="asc"/>
+ </datastore-index>
+
<datastore-index kind="TestRun" ancestor="false" source="manual">
<property name="testName" direction="asc"/>
<property name="startTimestamp" direction="asc"/>