Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plugin/v3/plugin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ message Sync {
repeated PredicatesGroup where_clause = 2;
repeated TableRelation table_relations = 3;
}
message MessageError {
string table_name = 1;
string error = 2;
}


message BackendOptions {
// table name to use for state backend
Expand All @@ -119,6 +124,7 @@ message Sync {
Sync.MessageMigrateTable migrate_table = 1;
Sync.MessageInsert insert = 2;
Sync.MessageDeleteRecord delete_record = 3;
Sync.MessageError error = 4;
}
}
}
Expand Down