Skip to content

Commit 406bc28

Browse files
author
Przemysław Stępień
authored
feat: Add error message type (#28)
1 parent f6bda13 commit 406bc28

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

plugin/v3/plugin.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ message Sync {
9595
repeated PredicatesGroup where_clause = 2;
9696
repeated TableRelation table_relations = 3;
9797
}
98+
message MessageError {
99+
string table_name = 1;
100+
string error = 2;
101+
}
102+
98103

99104
message BackendOptions {
100105
// table name to use for state backend
@@ -119,6 +124,7 @@ message Sync {
119124
Sync.MessageMigrateTable migrate_table = 1;
120125
Sync.MessageInsert insert = 2;
121126
Sync.MessageDeleteRecord delete_record = 3;
127+
Sync.MessageError error = 4;
122128
}
123129
}
124130
}

0 commit comments

Comments
 (0)