Description
There are two properties in the ConnectorSplit which are only used for Hive:
- cacheable: turns on/off retention in the data cache for Hive. Only accessed via HiveConnectorSplit objects
- splitWeight: used for scheduling, but only set to nonzero for Hive. Accessed via base ConnectorSplit objects
Some connectors (Tpch, Tpcds) set one or both of these, but never use them. Preferably we would remove these from the base class and place them in the Hive split implementation instead
cc @mbasmanova