Skip to content

Commit

Permalink
User guide spelling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abrougher committed Jan 4, 2014
1 parent 688c8d8 commit 08bbbde
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions symmetric-core/src/main/resources/symmetric-schema.xml
Expand Up @@ -300,7 +300,7 @@
<column name="router_id" type="VARCHAR" size="50" required="true" primaryKey="true" description="The id of a router." />
<column name="enabled" type="BOOLEANINT" size="1" required="true" default="1" description="Indicates whether this trigger router is enabled or not."/>
<column name="initial_load_order" type="INTEGER" required="true" default="1" description="Order sequence of this table when an initial load is sent to a node. If this value is the same for multiple tables, then SymmetricDS will attempt to order the tables according to FK constraints. If this value is set to a negative number, then the table will be excluded from an initial load." />
<column name="initial_load_select" type="LONGVARCHAR" description="Optional expression that can be used to pair down the data selected from a table during the initial load process." />
<column name="initial_load_select" type="LONGVARCHAR" description="Optional expression that can be used to pare down the data selected from a table during the initial load process." />
<column name="initial_load_delete_stmt" type="LONGVARCHAR" description="The expression that is used to delete data when an initial load occurs. If this field is empty, no delete will occur before the initial load. If this field is not empty, the text will be used as a sql statement and executed for the initial load delete." />
<column name="initial_load_batch_count" type="INTEGER" default="1" description="Only applicable if the initial load extract job is enabled. The number of batches to split an initial load of a table across. If 0 then a select count(*) will be used to dynamically determine the number of batches based on the max_batch_size of the reload channel." />
<column name="ping_back_enabled" type="BOOLEANINT" size="1" required="true" default="0" description="When enabled, the node will route data that originated from a node back to that node. This attribute is only effective if sync_on_incoming_batch is set to 1."/>
Expand Down Expand Up @@ -422,7 +422,7 @@
<column name="channel_id" type="VARCHAR" size="20" description="The channel that this batch is part of." />
<column name="status" type="CHAR" size="2" description="The current status of a batch can be routing (RT), newly created and ready for replication (NE), being queried from the database (QY), sent to a Node (SE), ready to be loaded (LD) and acknowledged as successful (OK), ignored (IG) or in error (ER)." />
<column name="load_id" type="BIGINT" description="An id that ties multiple batches together to identify them as being part of an initial load." />
<column name="extract_job_flag" type="BOOLEANINT" size="1" default="0" description="A flag that indicates that this batch is going to be extracted by another job." />
<column name="extract_job_flag" type="BOOLEANINT" size="1" default="0" description="A flag that indicates that this batch is going to be extracted by another job." />
<column name="load_flag" type="BOOLEANINT" size="1" default="0" description="A flag that indicates that this batch is part of an initial load." />
<column name="error_flag" type="BOOLEANINT" size="1" default="0" description="A flag that indicates that this batch was in error during the last synchornization attempt." />
<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." />
Expand Down Expand Up @@ -462,11 +462,11 @@
<index-column name="error_flag" />
</index>
</table>

<table name="extract_request" description="This table is used internally to request the extract of initial loads asynchronously when the initial load extract job is enabled.">
<column name="request_id" type="BIGINT" required="true" primaryKey="true" autoIncrement="true" description="Unique identifier for a request." />
<column name="node_id" type="VARCHAR" size="50" required="true" description="The node_id of the batch being loaded." />
<column name="status" type="CHAR" size="2" description="NE, OK" />
<column name="status" type="CHAR" size="2" description="NE, OK" />
<column name="start_batch_id" type="BIGINT" required="true" description="A load can be split across multiple batches. This is the first of N batches the load will be split across." />
<column name="end_batch_id" type="BIGINT" required="true" description="This is the last of N batches the load will be split across." />
<column name="trigger_id" type="VARCHAR" size="50" required="true" description="Unique identifier for a trigger associated with the extract request." />
Expand Down

0 comments on commit 08bbbde

Please sign in to comment.