I am worried about validating chagesets

I have tried to use liquibase for my database tool, but i could not find the way how to validate changesets that has same work flow (eg, add column) but different id, author.

the reason that i’m concerned is if teammates work separately, the changelog file can be merge in a file like this… how do i check these things…?

is there any way without a careful reviewing?

databaseChangeLog:
- changeSet:
    id: 1645169143762-1
    author: jaden (generated)
    changes:
    - addDefaultValue:
        columnDataType: varchar(255)
        columnName: update_field8
        defaultValue: name
        tableName: test
- changeSet:
    id: 1645169143763-1
    author: joy (generated)
    changes:
    - addDefaultValue:
        columnDataType: varchar(255)
        columnName: update_field8
        defaultValue: name
        tableName: test

Liquibase “validate” command will not check for logic problems in your changelogs, that will require developer coordination and testing.