Fix to accomodate MySQL and MariaDB.

This commit is contained in:
ianmarshall 2020-06-19 17:26:45 -04:00
parent 46c00f4efb
commit 5bf1e94a23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ import java.io.Serializable;
* Note about the CONCAT function below- We need a primary key (an @Id) column
* because hibernate won't allow the view the function without it, but
*/
"SELECT CONCAT(vsc.PID, CONCAT(' ', vscd.PID)) AS PID, " +
"SELECT CONCAT_WS(' ', vsc.PID, vscd.PID) AS PID, " +
" vsc.PID AS CONCEPT_PID, " +
" vsc.VALUESET_PID AS CONCEPT_VALUESET_PID, " +
" vsc.VALUESET_ORDER AS CONCEPT_VALUESET_ORDER, " +