kishoreg commented on issue #4902: Make PQL case insensitive URL: https://github.com/apache/incubator-pinot/issues/4902#issuecomment-573368684 ``` TableName: baseballStats Columns: "AtBatting", "G_old", "baseOnBalls", "caughtStealing", "doules", "groundedIntoDoublePlays", "hits", "hitsByPitch", "homeRuns", "intentionalWalks", "league", "numberOfGames", "numberOfGamesAsBatter", "playerID", "playerName", "playerStint", "runs", "runsBattedIn", "sacrificeFlies", "sacrificeHits", "stolenBases", "strikeouts", "teamID", "tripples", "yearID" ``` The following queries fail ```diff - select * from baseballstats limit 10 //lower case table name - select numberofgames from baseballStats limit 10 //lower case numberofgames + select SUM(numberOfGames) from baseballStats limit 10 //agg functions + select sum(numberOfGames) from baseballStats limit 10 //agg function ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
