I would happily avoid using CalciteConnectionImpl if possible. org.apache.calcite.avatica.server.Main.start wants the name of a class that implements Meta.Factory: Meta create(List<String> args).
public class CalciteMetaImpl is the only concrete implementation of Meta, and its constructor wants a CalciteConnectionImpl. How do I provide a Meta (e.g. CalciteMetaImpl) without accessing CalciteConnectionImpl? Trevor
