SAP / sap-commerce-db-sync

SAP Commerce extensions to perform table-to-table replication in single-directionally manner between two SAP Commerce instances or between SAP Commerce and an external database.
Apache License 2.0
29 stars 12 forks source link

missing exclusion for change_streams tables #22

Closed jqueneeSAP closed 4 months ago

jqueneeSAP commented 5 months ago

MigrationHybrisMSSqlPlatform.java should exclude new system tables provide by AzureSQL. Generation database schema is crashing because of that.

org.apache.ddlutils.DatabaseOperationException: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name 'change_streams_destination_type'.

Fix suggestion

tablesToExclude = Set.of("trace_xe_action_map", "trace_xe_event_map", "change_streams_partition_scheme", "change_streams_destination_type")