Skip to content

Commit

Permalink
SYMMETRICDS-443
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 18, 2011
1 parent e3309f9 commit a07af86
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
]]>
</value>
</entry>
<entry key="fn_sym_largeobject">
<entry key="largeobject">
<value>
<![CDATA[
CREATE OR REPLACE FUNCTION $(defaultSchema)fn_sym_largeobject(objectId oid) RETURNS text AS $$
CREATE OR REPLACE FUNCTION $(defaultSchema)$(functionName)(objectId oid) RETURNS text AS $$
DECLARE
encodedBlob text;
BEGIN
Expand Down Expand Up @@ -101,7 +101,7 @@
</property>
<property name="wrappedBlobColumnTemplate">
<value>
<![CDATA[ case when $(tableAlias)."$(columnName)" is null then '' else '"' || fn_sym_largeobject($(tableAlias)."$(columnName)") || '"' end ]]>
<![CDATA[ case when $(tableAlias)."$(columnName)" is null then '' else '"' || $(defaultSchema)$(prefixName)_largeobject($(tableAlias)."$(columnName)") || '"' end ]]>
</value>
</property>
<property name="numberColumnTemplate">
Expand Down

0 comments on commit a07af86

Please sign in to comment.