- Timestamp:
- May 30, 2007, 2:26:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/core/net/sf/basedb/plugins/BioAssaySetExporter.java
r3336 r3407 291 291 { 292 292 QueryItem qi = qis.get(field); 293 if (qi == null) 294 throw new BaseException("Unknown column: "+field+" (you can add this field using a formula)"); 293 295 query.select(Selects.expression(BioAssaySetUtil.createJepExpression(dc, bas, qi.getJep(), true), field)); 294 296 } … … 296 298 { 297 299 QueryItem qi = qis.get(field); 300 if (qi == null) 301 throw new BaseException("Unknwon field: "+field+" (you can add this field using a formula)"); 298 302 query.select(Selects.expression(BioAssaySetUtil.createJepExpression(dc, bas, qi.getJep(), true), field)); 299 303 }
Note: See TracChangeset
for help on using the changeset viewer.