[ https://issues.apache.org/jira/browse/SOLR-7414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16773733#comment-16773733 ]
Lucene/Solr QA commented on SOLR-7414: -------------------------------------- | (/) *{color:green}+1 overall{color}* | \\ \\ || Vote || Subsystem || Runtime || Comment || || || || || {color:brown} Prechecks {color} || | {color:green}+1{color} | {color:green} test4tests {color} | {color:green} 0m 0s{color} | {color:green} The patch appears to include 2 new or modified test files. {color} | || || || || {color:brown} master Compile Tests {color} || | {color:green}+1{color} | {color:green} compile {color} | {color:green} 4m 17s{color} | {color:green} master passed {color} | || || || || {color:brown} Patch Compile Tests {color} || | {color:green}+1{color} | {color:green} compile {color} | {color:green} 4m 44s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} javac {color} | {color:green} 4m 44s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} Release audit (RAT) {color} | {color:green} 3m 24s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} Check forbidden APIs {color} | {color:green} 3m 21s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} Validate source patterns {color} | {color:green} 3m 21s{color} | {color:green} the patch passed {color} | || || || || {color:brown} Other Tests {color} || | {color:green}+1{color} | {color:green} unit {color} | {color:green} 0m 29s{color} | {color:green} extraction in the patch passed. {color} | | {color:green}+1{color} | {color:green} unit {color} | {color:green} 87m 11s{color} | {color:green} core in the patch passed. {color} | | {color:black}{color} | {color:black} {color} | {color:black}101m 50s{color} | {color:black} {color} | \\ \\ || Subsystem || Report/Notes || | JIRA Issue | SOLR-7414 | | JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12959279/SOLR-7414.patch | | Optional Tests | compile javac unit ratsources checkforbiddenapis validatesourcepatterns | | uname | Linux lucene2-us-west.apache.org 4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux | | Build tool | ant | | Personality | /home/jenkins/jenkins-slave/workspace/PreCommit-SOLR-Build/sourcedir/dev-tools/test-patch/lucene-solr-yetus-personality.sh | | git revision | master / 6e81def | | ant | version: Apache Ant(TM) version 1.9.6 compiled on July 20 2018 | | Default Java | 1.8.0_191 | | Test Results | https://builds.apache.org/job/PreCommit-SOLR-Build/309/testReport/ | | modules | C: solr/contrib/extraction solr/core U: solr | | Console output | https://builds.apache.org/job/PreCommit-SOLR-Build/309/console | | Powered by | Apache Yetus 0.7.0 http://yetus.apache.org | This message was automatically generated. > CSVResponseWriter returns empty field when fl alias is combined with '*' > selector > --------------------------------------------------------------------------------- > > Key: SOLR-7414 > URL: https://issues.apache.org/jira/browse/SOLR-7414 > Project: Solr > Issue Type: Bug > Components: Response Writers > Reporter: Michael Lawrence > Priority: Major > Attachments: SOLR-7414-old.patch, SOLR-7414.patch, SOLR-7414.patch, > SOLR-7414.patch, SOLR-7414.patch > > > Attempting to retrieve all fields while renaming one, e.g., "inStock" to > "stocked" (URL below), results in CSV output that has a column for "inStock" > (should be "stocked"), and the column has no values. > steps to reproduce using 5.1... > {noformat} > $ bin/solr -e techproducts > ... > $ curl -X POST -H 'Content-Type: application/json' > 'http://localhost:8983/solr/techproducts/update?commit=true' --data-binary > '[{ "id" : "aaa", "bar_i" : 7, "inStock" : true }, { "id" : "bbb", "bar_i" : > 7, "inStock" : false }, { "id" : "ccc", "bar_i" : 7, "inStock" : true }]' > {"responseHeader":{"status":0,"QTime":730}} > $ curl > 'http://localhost:8983/solr/techproducts/query?q=bar_i:7&fl=id,stocked:inStock&wt=csv' > id,stocked > aaa,true > bbb,false > ccc,true > $ curl > 'http://localhost:8983/solr/techproducts/query?q=bar_i:7&fl=*,stocked:inStock&wt=csv' > bar_i,id,_version_,inStock > 7,aaa,1498719888088236032, > 7,bbb,1498719888090333184, > 7,ccc,1498719888090333185, > $ curl > 'http://localhost:8983/solr/techproducts/query?q=bar_i:7&fl=stocked:inStock,*&wt=csv' > bar_i,id,_version_,inStock > 7,aaa,1498719888088236032, > 7,bbb,1498719888090333184, > 7,ccc,1498719888090333185, > {noformat} -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org