Skip to content

Commit

Permalink
0001381: transform_table.target_table_name should be optional accordi…
Browse files Browse the repository at this point in the history
…ng the documentation. the transform code requires that is be set
  • Loading branch information
chenson42 committed Aug 26, 2013
1 parent 172cd98 commit 8f7b11a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symmetric-core/src/main/resources/symmetric-schema.xml
Expand Up @@ -526,7 +526,7 @@
<column name="source_table_name" type="VARCHAR" size="255" required="true" description="The name of the source table that will be transformed." />
<column name="target_catalog_name" type="VARCHAR" size="255" description="Optional name for the catalog a target table is in. Only use this if the target table is not in the default catalog." />
<column name="target_schema_name" type="VARCHAR" size="255" description="Optional name of the schema a target table is in. Only use this if the target table is not in the default schema." />
<column name="target_table_name" type="VARCHAR" size="255" description="Optional name for a target table. Use this if the target table name is different than the source." />
<column name="target_table_name" type="VARCHAR" size="255" description="The name of the target table." />
<column name="update_first" type="BOOLEANINT" size="1" default="0" description="If true, the target actions are attempted as updates first, regardless of whether the source operation was an insert or an update."/>
<column name="delete_action" type="VARCHAR" size="10" required="true" description="An action to take upon delete of a row. Possible values are: DEL_ROW, UPDATE_COL, or NONE." />
<column name="transform_order" type="INTEGER" required="true" default="1" description="Specifies the order in which to apply transforms if more than one target operation occurs."/>
Expand Down

0 comments on commit 8f7b11a

Please sign in to comment.