Re: JDBC: Collection not found with count(*) and uppercase name

2016-07-18 Thread Joel Bernstein
This looks a like a bug with SQL stats query which uses the StatsStream. The table name should be case insensitive. The simple select query is using CloudSolrStream which is properly handling the table name. Feel free to create a jira for this. Joel Bernstein http://joelsolr.blogspot.com/ On Mo

JDBC: Collection not found with count(*) and uppercase name

2016-07-17 Thread Damien Kamerman
Hi, I'm on Solr 6.1 and testing a JDBC query from SquirrelSQL and I find this query works OK: select id from c_D02016 But when I try this query I get an error: Collection not found c_d02016 select count(*) from c_D02016. It seems solr is expecting the collection/table name to be lower-case. Has