summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/music
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2023-11-02 13:49:23 +0100
committerTor Egge <Tor.Egge@online.no>2023-11-02 13:49:23 +0100
commit108f27308e628447d5b833f7ea676aa2c5f452b5 (patch)
tree29c2d28b01aae9cd3b0a735c81c3427cb5a2fe39 /config-model/src/test/derived/music
parente64583fa0b618da67189152c10310293221dd8bc (diff)
Dynamic summary fields don't require tokenizer.
Tokenization is enabled by the presence of an index expression in the indexing script for the field, and the annotated strings containing the result of tokenization are written to the document field.
Diffstat (limited to 'config-model/src/test/derived/music')
-rw-r--r--config-model/src/test/derived/music/ilscripts.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model/src/test/derived/music/ilscripts.cfg b/config-model/src/test/derived/music/ilscripts.cfg
index 7a02d836db5..ba292c4013a 100644
--- a/config-model/src/test/derived/music/ilscripts.cfg
+++ b/config-model/src/test/derived/music/ilscripts.cfg
@@ -39,7 +39,7 @@ ilscript[].docfield[] "powermetalvalue"
ilscript[].docfield[] "progvalue"
ilscript[].content[] "clear_state | guard { input hiphopvalue | split \";\" | attribute hiphopvalue_arr; }"
ilscript[].content[] "clear_state | guard { input metalvalue | split \";\" | attribute metalvalue_arr; }"
-ilscript[].content[] "clear_state | guard { input bgndata | tokenize normalize stem:\"BEST\" | summary bgndata; }"
+ilscript[].content[] "clear_state | guard { input bgndata | summary bgndata; }"
ilscript[].content[] "clear_state | guard { input sales | summary sales | attribute sales; }"
ilscript[].content[] "clear_state | guard { input pto | summary pto | attribute pto; }"
ilscript[].content[] "clear_state | guard { input keys | tokenize normalize stem:\"BEST\" | index keys; }"
@@ -66,7 +66,7 @@ ilscript[].content[] "clear_state | guard { input artist | tokenize normalize st
ilscript[].content[] "clear_state | guard { input artistspid | summary artistspid; }"
ilscript[].content[] "clear_state | guard { input title | tokenize normalize stem:\"BEST\" | summary title | index title; }"
ilscript[].content[] "clear_state | guard { input newestedition | summary newestedition | attribute newestedition; }"
-ilscript[].content[] "clear_state | guard { input bgnpto | tokenize normalize stem:\"BEST\" | summary bgnpto; }"
+ilscript[].content[] "clear_state | guard { input bgnpto | summary bgnpto; }"
ilscript[].content[] "clear_state | guard { input year | summary year | attribute year; }"
ilscript[].content[] "clear_state | guard { input did | summary did | attribute did; }"
ilscript[].content[] "clear_state | guard { input scorekey | summary scorekey; }"