Switching to correct concat function for oracle.

This commit is contained in:
Michael Drury 2022-03-11 00:40:01 +00:00
parent 07bcaf2d0a
commit ffbf3a2eca
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ module OracleModule {
} }
getStringConcat(parts: string[]): string { getStringConcat(parts: string[]): string {
return `concat(${parts.join(", ")})` return parts.join(" || ")
} }
/** /**