Jackie-Jiang commented on PR #8713: URL: https://github.com/apache/pinot/pull/8713#issuecomment-1130686593
Sounds good. I think we can limit the flexibility of the table name to contain at most one dot, and assume the name is constructed from <db>.<table>. There are 2 places where we handle the dots within the table name: 1. `getActualTableName()`: With the above limitation, no change is needed. The queried table name should have at most one dot 2. `getActualColumnName()`: We can change the logic to do a prefix match for the `rawTableName + '.'` (use `columnName.regionMatches()` for better performance) -- 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]
