Skip to content

Commit

Permalink
rtrim character-converted integers
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 19, 2007
1 parent fde6581 commit 551928f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symmetric/src/main/resources/dialects/derby.xml
Expand Up @@ -48,7 +48,7 @@
</property>
<property name="numberColumnTemplate">
<value>
<![CDATA[case when $(tableAlias).$(columnName) is null then '' else char($(tableAlias).$(columnName)) end ||','||]]>
<![CDATA[case when $(tableAlias).$(columnName) is null then '' else rtrim(char($(tableAlias).$(columnName))) end ||','||]]>
</value>
</property>
<property name="triggerConcatCharacter" value="||"/>
Expand Down

0 comments on commit 551928f

Please sign in to comment.