summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd')
-rw-r--r--config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd50
1 files changed, 50 insertions, 0 deletions
diff --git a/config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd b/config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd
new file mode 100644
index 00000000000..449a5d0a02e
--- /dev/null
+++ b/config-model/src/test/derived/indexinfo_fieldsets/indexinfo_fieldsets.sd
@@ -0,0 +1,50 @@
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+search indexinfo_fieldsets {
+
+ document indexinfo_fieldsets {
+
+ field nostemming1 type string {
+ indexing: summary | index
+ stemming: none
+ }
+
+ field nostemming2 type string {
+ indexing: summary | index
+ stemming: none
+ }
+
+ field nonormalizing1 type string {
+ indexing: summary | index
+ normalizing: none
+ }
+
+ field nonormalizing2 type string {
+ indexing: summary | index
+ normalizing: none
+ }
+
+ field exact1 type string {
+ indexing: summary | index
+ match: exact
+ }
+
+ field exact2 type string {
+ indexing: summary | index
+ match: exact
+ }
+
+ }
+
+ fieldset nostemming {
+ fields: nostemming1, nostemming2
+ }
+
+ fieldset nonormalizing {
+ fields: nonormalizing1, nonormalizing2
+ }
+
+ fieldset exact {
+ fields: exact1, exact2
+ }
+
+}