aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/ngram/chunk.sd
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/derived/ngram/chunk.sd')
-rw-r--r--config-model/src/test/derived/ngram/chunk.sd20
1 files changed, 20 insertions, 0 deletions
diff --git a/config-model/src/test/derived/ngram/chunk.sd b/config-model/src/test/derived/ngram/chunk.sd
new file mode 100644
index 00000000000..7c2a7465327
--- /dev/null
+++ b/config-model/src/test/derived/ngram/chunk.sd
@@ -0,0 +1,20 @@
+schema chunk {
+
+ document chunk {
+ field content type string {
+ indexing: summary | index
+ match {
+ gram
+ gram-size: 3
+ }
+ }
+ }
+
+ document-summary content-summary inherits default {
+ summary content_dynamic type string {
+ source: content
+ dynamic
+ }
+ }
+
+}