aboutsummaryrefslogtreecommitdiff
path: root/solr-8.3.1/server/solr/dash/conf/schema.xml
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-13 21:35:46 -0400
committerGitHub <noreply@github.com>2020-08-13 21:35:46 -0400
commit4fbdc12c026d0bd5891660018faa3473042344b3 (patch)
treea218fb0415f2a85936ae867d4fd98b0f696bfb0e /solr-8.3.1/server/solr/dash/conf/schema.xml
parent3debb7fedcd9c955ede46e57d4da182a5fa9acae (diff)
parent16e663f807c77c56e64c23689dfdb7000fb2d0e9 (diff)
Merge pull request #606 from browngraphicslab/schema_search
Schema search
Diffstat (limited to 'solr-8.3.1/server/solr/dash/conf/schema.xml')
-rw-r--r--solr-8.3.1/server/solr/dash/conf/schema.xml7
1 files changed, 3 insertions, 4 deletions
diff --git a/solr-8.3.1/server/solr/dash/conf/schema.xml b/solr-8.3.1/server/solr/dash/conf/schema.xml
index 47aa56787..a0496444b 100644
--- a/solr-8.3.1/server/solr/dash/conf/schema.xml
+++ b/solr-8.3.1/server/solr/dash/conf/schema.xml
@@ -44,11 +44,10 @@
<fieldType name="pdouble" class="solr.DoublePointField"/>
<field name="string" type="string" indexed="true" stored="true" uninvertible="true"/>
- <field name="text" type="text" indexed="true" stored="false" uninvertible="false" multiValued="true"/>
+ <field name="DEFAULT" type="text" indexed="true" stored="false" uninvertible="false" multiValued="true"/>
<field name="id" type="string" indexed="true" stored="true" uninvertible="false" required="true"/>
<field name="_version_" type="plong" indexed="true" stored="true"/>
<field name="proto" type="string" indexed="true" stored="true" uninvertible="false" />
- <field name="_height" type="pdouble" indexed="true" stored="true" uninvertible="false" docValues="true"/>
<dynamicField name="*_s" type="string" indexed="true" stored="true" uninvertible="false" docValues="true"/>
<dynamicField name="*_t" type="text" indexed="true" stored="true" uninvertible="false" docValues="false"/>
@@ -59,10 +58,10 @@
<dynamicField name="*_b" type="boolean" indexed="true" stored="true" uninvertible="false" docValues="false"/>
<dynamicField name="*_a" type="text" indexed="true" stored="false" uninvertible="false" docValues="false" multiValued="true"/>
- <copyField source="*_t" dest="*_s"/>
-
<!-- <field name="_height" type="pdouble" indexed="true" stored="true" uninvertible="false" docValues="true"/> -->
+ <copyField source="*_t" dest="*_s"/>
+ <copyField source="*_t" dest="DEFAULT"/>
<copyField source="*_t" dest="*_a"/>
<copyField source="*_n" dest="*_a"/>
</schema>