Skip to content

Commit

Permalink
0005389: fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed May 16, 2023
1 parent b7f9175 commit cc2b3fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symmetric-core/src/main/resources/symmetric-schema.xml
Expand Up @@ -645,8 +645,8 @@
<column name="common_flag" type="BOOLEANINT" size="1" default="0" description="A flag that indicates that the data in this batch is shared by other nodes (they will have the same batch_id). Shared batches will be extracted to a common location." />
<column name="fallback_insert_count" type="INTEGER" required="true" default="0" description="The number of times an update was turned into an insert because the data was not already in the target database." />
<column name="fallback_update_count" type="INTEGER" required="true" default="0" description="The number of times an insert was turned into an update because a data row already existed in the target database." />
<column name="conflict_win_count" type="INTEGER" required="true" default="0" description="Not implemented. The number of times a conflict was detected for a row and it was resolved as the winning row." />
<column name="conflict_lose_count" type="INTEGER" required="true" default="0" description="Not implemented. The number of times a conflict was detected for a row and it was resolved as the losing row." />
<column name="conflict_win_count" type="INTEGER" required="true" default="0" description="The number of times a conflict was detected for a row and it was resolved as the winning row." />
<column name="conflict_lose_count" type="INTEGER" required="true" default="0" description="The number of times a conflict was detected for a row and it was resolved as the losing row." />
<column name="ignore_row_count" type="INTEGER" required="true" default="0" description="The number of times a row was ignored." />
<column name="missing_delete_count" type="INTEGER" required="true" default="0" description="The number of times a delete did not affect the database because the row was already deleted." />
<column name="skip_count" type="INTEGER" required="true" default="0" description="The number of times a batch was sent and skipped because it had already been loaded according to incoming_batch." />
Expand Down

0 comments on commit cc2b3fd

Please sign in to comment.