(String sqlCommand, String errorMessage)
| 166 | // ///// Execute SQL command on the DDF /////// |
| 167 | |
| 168 | private DDF sql2ddf(String sqlCommand, String errorMessage) throws DDFException { |
| 169 | try { |
| 170 | return this.getManager().sql2ddf(String.format(sqlCommand, "{1}"), |
| 171 | new SQLDataSourceDescriptor(sqlCommand, null, null, null, this |
| 172 | .getDDF().getUUID().toString())); |
| 173 | |
| 174 | } catch (Exception e) { |
| 175 | throw new DDFException(String.format(errorMessage, this.getDDF().getTableName()), e); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | @Override |
| 180 | public DDF subset(List<Column> columnExpr, Expression filter) throws DDFException { |
no test coverage detected