1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Switching to correct concat function for oracle.

This commit is contained in:
Michael Drury 2022-03-11 00:40:01 +00:00
parent 05836272dd
commit 7f36cc97c9

View file

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