summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/attributeproperties2.sd
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/examples/attributeproperties2.sd')
-rw-r--r--config-model/src/test/examples/attributeproperties2.sd27
1 files changed, 0 insertions, 27 deletions
diff --git a/config-model/src/test/examples/attributeproperties2.sd b/config-model/src/test/examples/attributeproperties2.sd
deleted file mode 100644
index 9c5e3e1a07f..00000000000
--- a/config-model/src/test/examples/attributeproperties2.sd
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-search bolding {
- document bolding {
-
- # This is how it usually should be
- field anotherbatchid type int {
- indexing: summary | index | attribute
- attribute {
- prefetch
- }
- attribute: huge
- }
-
- # The attribute is created in the next field
- field bar type int {
- indexing: summary | index
- attribute {
- prefetch
- }
- }
-
- # Creates attribute for the previous field
- field foo type int {
- indexing: input bar | attribute bar
- }
- }
-}