We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95cbb69 commit 8f70ca7Copy full SHA for 8f70ca7
mcc/src/org/labkey/mcc/query/MccRequestCustomizer.java
@@ -84,7 +84,7 @@ public boolean isSortable()
84
TableInfo dti = StorageProvisioner.createTableInfo(d.getDomain());
85
86
SQLFragment sql = new SQLFragment("(SELECT ").
87
- append(ti.getSqlDialect().getGroupConcat(new SQLFragment("d." + dti.getColumn("participantid").getSelectIdentifier()), true, true, new SQLFragment("', '"))).
+ append(ti.getSqlDialect().getGroupConcat(new SQLFragment("d.").appendIdentifier(dti.getColumn("participantid").getSelectIdentifier()), true, true, new SQLFragment("', '"))).
88
append(" as expr FROM ").
89
append(" mcc." + MccSchema.TABLE_ANIMAL_REQUESTS + " ar JOIN studydataset.").append(dti.getName()).
90
append(" d ON (d.mccRequestId = ar.rowId)").
0 commit comments