View Issue Details

IDProjectCategoryView StatusLast Update
0006406SymmetricDSBugpublic2024-05-15 18:00
Reportermrozieres Assigned Toelong  
Prioritynormal 
Status resolvedResolutionfixed 
Product Version3.15.6 
Target Version3.15.7Fixed in Version3.15.7 
Summary0006406: Trigger Sync do not capture updates on included_column_names or excluded_column_names
DescriptionUpdating a trigger included_column_names or exlucded_column_names values is not enougth to let Symmetric understand it should rebuild / resync it.
This modification is not seen by Symmetric because the values of theses fields are not used inside the Trigger.toHashedValue function.

I think adding theses few lines at the end on the function should solve the issue :)

        if (null != excludedColumnNames) {
            hashedValue += excludedColumnNames.hashCode();
        }

        if (null != includedColumnNames) {
            hashedValue += includedColumnNames.hashCode();
        }
TagsNo tags attached.

Activities

pmarzullo

2024-05-15 17:24

developer   ~0002448

The excluded column names column is included in the calculation of the hash value, but the included column names column is not included.
The included column names need to be added to the calculation of the hash.

Related Changesets

SymmetricDS: 3.15 306110e9

2024-05-15 17:26:02

admin

Details Diff
0006406: Trigger Sync do not capture updates on included_column_names or
excluded_column_names
Affected Issues
0006406
mod - symmetric-core/src/main/java/org/jumpmind/symmetric/model/Trigger.java Diff File

Issue History

Date Modified Username Field Change
2024-05-07 09:58 mrozieres New Issue
2024-05-15 17:24 pmarzullo Note Added: 0002448
2024-05-15 17:25 pmarzullo Assigned To => pmarzullo
2024-05-15 17:25 pmarzullo Status new => confirmed
2024-05-15 17:26 elong Assigned To pmarzullo => elong
2024-05-15 17:26 elong Status confirmed => resolved
2024-05-15 17:26 elong Resolution open => fixed
2024-05-15 17:26 elong Fixed in Version => 3.15.7
2024-05-15 18:00 admin Changeset attached => SymmetricDS 3.15 306110e9