[#884] ARRAY's and UDT's are not correctly inlined when rendering inlined SQL

This commit is contained in:
Lukas Eder 2012-02-04 21:17:21 +00:00
parent 1a81b4a388
commit 5d0ebca5c5

View File

@ -72,7 +72,7 @@ class ArrayConstant<T> extends AbstractField<T> {
@Override
public final void toSQL(RenderContext context) {
if (context.inline()) {
context.literal(array.getName());
context.sql(array.getName());
context.sql("(");
String separator = "";