I am new to Solr. When I index my database, it fetches all the rows successfully, but the output is showing that they are not indexed. Here are the details:
My data-config.xml setting
<entity name="company" query="select report_number, company_name from company">
<field column="report_number" name="country_id"/>
<field column="company_name" name="country_name"/>
</entity>
Report_number and company_name both are varchar datatype in the database.
My Schema.xml file where I define the fields
<field name="country_id" type="string" indexed="true" stored="true" required="false" />
<field name="country_name" type="string" indexed="true" stored="true" required="false" />
This is the browser output

