Let's have the exception here as well so that we know where to fix.

This commit is contained in:
Michael Bayne
2009-04-14 16:17:30 +00:00
parent 093387b603
commit 76c8d59c56
@@ -263,7 +263,8 @@ public abstract class Conditionals
public In (ColumnExp column, Comparable<?>... values)
{
if (values.length == 0) {
log.warning("Grouchily allowing empty In() operator", "column", column.name);
log.warning("Grouchily allowing empty In() operator", "column", column.name,
new Exception());
}
_column = column;
_values = values;