190191192193194195196197198199200
Column col = field.getColumns()[0]; if (prevValue == null) row.whereNull(col); else row.whereString(col, prevValue.toString()); } /////////////////////////// // Joinable implementation ///////////////////////////
195196197198199200201202203204205