You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update CLP connector for Velox 0.297 API compatibility
Adapt CLP connector to upstream Velox API changes in 0.297:
- ConnectorFactory global registry removed: Replace
connector::registerConnectorFactory / getConnectorFactory /
unregisterConnectorFactory calls with direct factory instantiation
(ClpConnectorFactory factory; factory.newConnector(...))
- New type aliases for connector handles: Update createDataSource and
ClpDataSource constructor signatures to use ConnectorTableHandlePtr
(shared_ptr<const ConnectorTableHandle>) and ColumnHandleMap
(unordered_map<string, shared_ptr<const ColumnHandle>>) instead of
the non-const shared_ptr variants
- Update dynamic_pointer_cast calls to cast to const types to match
the new const-qualified pointer types
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments