fx19880617 opened a new issue #6298:
URL: https://github.com/apache/incubator-pinot/issues/6298
Pinot table schema access is from restful API only right now.
It would be good to support the built-in system tables. And we can query
schema in SQL style:
```
SHOW COLUMNS FROM table
```
or
```
SELECT TABLE_SCHEMA,
TABLE_NAME,
COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_SCHEMA <> 'INFORMATION_SCHEMA'
```
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]