Push down not work expected

This particular exception is benign. It’s for calculating the rowcount which is used for planning (for example, when joining two tables the row count of the two is factored in to determine what is the better order for the join).

You can make this work as well by extending ArpSchemaFetcher and overriding getRowCount() and adding your own method to get the row count, then changing your ArpDialect implementation to return your JdbcSchemaFetcher.

1 Like