walterddr opened a new pull request, #12377: URL: https://github.com/apache/pinot/pull/12377
the following 3 should be equivalent ``` -- method 1 fully-qualify select * from default.airlineStats limit 10 -- method 2 with default db select * from airlineStats limit 10 -- method 3 setting specific db SET database='default'; select * from airlineStats limit 10 ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
