Skip to content

Commit

Permalink
1945207 - remove extra comma in mssql.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 21, 2008
1 parent 29fdfdb commit 1a0fe4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symmetric/src/main/resources/dialects/mssql.xml
Expand Up @@ -88,7 +88,7 @@
(select '$(targetTableName)','I', $(triggerHistoryId), $(columns), current_timestamp from inserted inner join $(schemaName)$(tableName) $(origTableAlias) on $(tableNewPrimaryKeyJoin) where $(syncOnInsertCondition));
$(else:containsBlobClobColumns)
insert into $(defaultSchema)$(prefixName)_data (table_name, event_type, trigger_hist_id, row_data, create_time)
(select '$(targetTableName)',,'I', $(triggerHistoryId), $(columns), current_timestamp from inserted where $(syncOnInsertCondition));
(select '$(targetTableName)','I', $(triggerHistoryId), $(columns), current_timestamp from inserted where $(syncOnInsertCondition));
$(end:containsBlobClobColumns)
if (@@ROWCOUNT > 0) begin
insert into $(defaultSchema)$(prefixName)_data_event (node_id, data_id, channel_id, transaction_id) (select node_id, @@IDENTITY, '$(channelName)', $(txIdExpression) from $(defaultSchema)$(prefixName)_node c where
Expand Down

0 comments on commit 1a0fe4d

Please sign in to comment.