[#2395] Simulate row value expression IN predicate using EXISTS -

Added Utils.array(T...)
This commit is contained in:
Lukas Eder 2013-05-01 19:58:24 +02:00
parent 3c15c2eda8
commit ae56ed55c7

View File

@ -654,6 +654,13 @@ final class Utils {
return result;
}
/**
* Create a new array
*/
static final <T> T[] array(T... array) {
return array;
}
/**
* Use this rather than {@link Arrays#asList(Object...)} for
* <code>null</code>-safety