[ https://issues.apache.org/jira/browse/SOLR-7414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16776095#comment-16776095 ]
Lucene/Solr QA commented on SOLR-7414: -------------------------------------- | (x) *{color:red}-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} 1m 54s{color} | {color:green} master passed {color} | || || || || {color:brown} Patch Compile Tests {color} || | {color:green}+1{color} | {color:green} compile {color} | {color:green} 1m 48s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} javac {color} | {color:green} 1m 48s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} Release audit (RAT) {color} | {color:green} 1m 11s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} Check forbidden APIs {color} | {color:green} 1m 6s{color} | {color:green} the patch passed {color} | | {color:green}+1{color} | {color:green} Validate source patterns {color} | {color:green} 1m 6s{color} | {color:green} the patch passed {color} | || || || || {color:brown} Other Tests {color} || | {color:green}+1{color} | {color:green} unit {color} | {color:green} 0m 39s{color} | {color:green} extraction in the patch passed. {color} | | {color:red}-1{color} | {color:red} unit {color} | {color:red} 23m 4s{color} | {color:red} core in the patch failed. {color} | | {color:black}{color} | {color:black} {color} | {color:black} 30m 5s{color} | {color:black} {color} | \\ \\ || Reason || Tests || | Failed junit tests | solr.cloud.LeaderTragicEventTest | | | solr.cloud.TestCloudSearcherWarming | \\ \\ || Subsystem || Report/Notes || | JIRA Issue | SOLR-7414 | | JIRA Patch URL | https://issues.apache.org/jira/secure/attachment/12959797/SOLR-7414.patch | | Optional Tests | compile javac unit ratsources checkforbiddenapis validatesourcepatterns | | uname | Linux lucene1-us-west 4.4.0-137-generic #163~14.04.1-Ubuntu SMP Mon Sep 24 17:14:57 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 / 0de3905 | | ant | version: Apache Ant(TM) version 1.9.3 compiled on July 24 2018 | | Default Java | 1.8.0_191 | | unit | https://builds.apache.org/job/PreCommit-SOLR-Build/312/artifact/out/patch-unit-solr_core.txt | | Test Results | https://builds.apache.org/job/PreCommit-SOLR-Build/312/testReport/ | | modules | C: solr/contrib/extraction solr/core U: solr | | Console output | https://builds.apache.org/job/PreCommit-SOLR-Build/312/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, 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