Skip to content

Commit

Permalink
0002041: Initial load failing on Interbase because of "Implementation…
Browse files Browse the repository at this point in the history
… limit exceeded. Block size exceeds implementation restricti
  • Loading branch information
chenson42 committed Oct 31, 2014
1 parent f4174f9 commit 51fff56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Expand Up @@ -124,6 +124,7 @@ public FirebirdTriggerTemplate(ISymmetricDialect symmetricDialect) {
"select $(columns) from $(schemaName)$(tableName) t where $(whereClause) " );
}

@Override
public boolean useTriggerTemplateForColumnTemplatesDuringInitialLoad() {
return false;
}
Expand Down
Expand Up @@ -135,5 +135,10 @@ public InterbaseTriggerTemplate(ISymmetricDialect symmetricDialect) {
sqlTemplates.put("initialLoadSqlTemplate" ,
"select sym_rtrim($(columns))||'' from $(schemaName)$(tableName) t where $(whereClause) " );
}

@Override
public boolean useTriggerTemplateForColumnTemplatesDuringInitialLoad() {
return false;
}

}

0 comments on commit 51fff56

Please sign in to comment.