[
https://issues.apache.org/jira/browse/SOLR-10198?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18055384#comment-18055384
]
Thomas Mortagne edited comment on SOLR-10198 at 1/30/26 9:51 AM:
-----------------------------------------------------------------
I just noticed this bug on Solr 9.4.1. Note that it seems to only impact
#queryAndStreamResponse (which we don't use much), #query is behaving as it
should.
I'm a bit surprised that a regression which breaks the SolrJ API contract is
not seen as something more blocker.
was (Author: tmortagne):
I just noticed this bug. Note that it seems to only impact
#queryAndStreamResponse (which we don't use much), #query is behaving as it
should.
I'm a bit surprised that a regression which breaks the SolrJ API contract is
not seen as something more blocker.
> EmbeddedSolrServer embedded behavior different from HttpSolrClient
> ------------------------------------------------------------------
>
> Key: SOLR-10198
> URL: https://issues.apache.org/jira/browse/SOLR-10198
> Project: Solr
> Issue Type: Bug
> Components: SolrJ
> Affects Versions: 6.4.1
> Reporter: Bert Summers
> Priority: Major
>
> When retrieving the value of a field the object type is different depending
> on the server type.
> If I have a schema which has <field name="id" type="int" indexed="true"
> stored="true" required="true" />
> If I do
> solrClient.queryAndStreamResponse("test", new SolrQuery("*:*"), new
> StreamingResponseCallback {
> @Override
> public void streamSolrDocument(final SolrDocument doc) {
> Object idField = doc.getFieldValue("id");
> }
> @Override
> public void streamDocListInfo(final long numFound, final long start,
> final Float maxScore) {
> System.out.println("Found " + numFound + " documents");
> }
> });
> in streamSolrDocument the Object type is Integer if the server is http but
> StoredField if embedded.
> Both the server and embedded use the same schema.xml and solrconfig.xml
> In version 5.1.0 both connections would return the same type (Integer)
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]