Re: Using Apache Calcite to query postgres like database

2024-07-08 Thread Mihai Budiu
The Calcite framework is not a databse, it is a set of tools for parsing and optimizing queries. It does include validation, but not really "execution". Calcite does not include a storage layer. Calcite does include a layer that can execute queries, but I think it is mainly used for testing. O

RE: Using Apache Calcite to query postgres like database

2024-07-07 Thread Hugh Pearse
You can populating your Java application schema information automatically by deferring to a backend database, or programmatically using calcite API calls depending on which use case meets your needs. On 2024/07/07 02:50:47 Shiv K wrote: > Hi team > > I am trying to get started with Apache Calcite