4950515253545556575859
/** * {@inheritDoc} */ public Statement createStatement(String mql) { try { return new StatementImpl( new ByteArrayInputStream(mql.getBytes()), db, objectMapper); } catch(Exception e) { throw new MqlException(e); } }