Package org.teiid.query.validator.UpdateValidator

Examples of org.teiid.query.validator.UpdateValidator.UpdateType


      QueryMetadataException {
    return !virtualGroup.isTempGroupSymbol() && qmi.isVirtualGroup(virtualGroup.getMetadataID()) && qmi.isVirtualModel(qmi.getModelID(virtualGroup.getMetadataID()));
  }
 
  private static UpdateType determineType(String plan) {
    UpdateType type = UpdateType.INHERENT;
    if (plan != null) {
      if (StringUtil.startsWithIgnoreCase(plan, SQLConstants.Reserved.CREATE)) {
        type = UpdateType.UPDATE_PROCEDURE;
      } else {
        type = UpdateType.INSTEAD_OF;
View Full Code Here

TOP

Related Classes of org.teiid.query.validator.UpdateValidator.UpdateType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.