Sorry to hijack this thread. I'm having a hard time understanding the
individual components with the testing dsl handling so much. A few specific
questions:
And HttpServer is a standalone program that uses jetty to listen on a port for
JSON requests
1. What role does JSON have in a JDBC server, or is that for something else?
2. I noticed the factory= in the connection string. Is that preferred over the
model= param in sqlline examples, e.g.
("jdbc:calcite:model=target/test-classes/model.json")?
3. Assuming factory is the way forward, how do I implement a Meta.Factory
without the CalciteAssert testing infrastructure? It seems to pull a connection
out of thin air (final Connection connection = CalciteAssert.that().connect();).
Thanks!
Trevor