Skip to content

Commit

Permalink
[hotfix] [base] fix TableId.java use identifier decode error with fou…
Browse files Browse the repository at this point in the history
…r quota
  • Loading branch information
GOODBOY008 committed Aug 29, 2023
1 parent 88b3d31 commit 80160ca
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/

package io.debezium.relational;

import io.debezium.annotation.Immutable;
Expand All @@ -12,9 +13,11 @@
import java.io.Serializable;

/**
* Copy from Debezium and implement Serializable. Unique identifier for a database table.
* Copied from Debezium 1.9.7.Final.
*
* <p>Unique identifier for a database table.
*
* @author Randall Hauch
* <p>Just add serialization support.
*/
@Immutable
public final class TableId implements DataCollectionId, Comparable<TableId>, Serializable {
Expand Down

0 comments on commit 80160ca

Please sign in to comment.