Is it possible within Apache Calcite to map a JDBC based query as a virtual table? I would like to expose a table to the user, but behind the scenes have it be implemented as a query via jdbc to a datasource. I am aware that I can subclass Table and implement myself if necessary, but I wanted to see if there was a supported way to do this.
Any suggestions would be appreciated.