Fix JDBCStreamTest

This commit is contained in:
Kevin Risden 2016-10-27 16:58:43 -05:00
parent 8d04e2bc88
commit e1ed290dac
1 changed files with 2 additions and 2 deletions

View File

@ -354,8 +354,8 @@ public class JDBCStreamTest extends SolrCloudTestCase {
+ " rating_f as rating" + " rating_f as rating"
+ " )," + " ),"
+ " select(" + " select("
+ " jdbc(connection=\"jdbc:hsqldb:mem:.\", sql=\"select PEOPLE.ID as PERSONID, PEOPLE.NAME, COUNTRIES.COUNTRY_NAME from PEOPLE inner join COUNTRIES on PEOPLE.COUNTRY_CODE = COUNTRIES.CODE order by PEOPLE.ID\", sort=\"ID asc\", get_column_name=true)," + " jdbc(connection=\"jdbc:hsqldb:mem:.\", sql=\"select PEOPLE.ID as PERSONID, PEOPLE.NAME, COUNTRIES.COUNTRY_NAME from PEOPLE inner join COUNTRIES on PEOPLE.COUNTRY_CODE = COUNTRIES.CODE order by PEOPLE.ID\", sort=\"PERSONID asc\", get_column_name=true),"
+ " ID as personId," + " PERSONID as personId,"
+ " NAME as personName," + " NAME as personName,"
+ " COUNTRY_NAME as country" + " COUNTRY_NAME as country"
+ " )," + " ),"