use of org.teiid.client.metadata.MetadataResult in project teiid by teiid.
the class DeferredMetadataProvider method loadFullMetadata.
private void loadFullMetadata() throws SQLException {
MetadataResult results;
try {
results = this.statement.getDQP().getMetadata(this.requestID);
} catch (TeiidComponentException e) {
throw TeiidSQLException.create(e);
} catch (TeiidProcessingException e) {
throw TeiidSQLException.create(e);
}
this.metadata = results.getColumnMetadata();
}
Aggregations