Examples of showInInformationSchema()


Examples of org.apache.drill.exec.store.AbstractSchema.showInInformationSchema()

  }

  protected boolean shouldVisitSchema(SchemaPlus schema) {
    try {
      AbstractSchema drillSchema = schema.unwrap(AbstractSchema.class);
      return drillSchema.showInInformationSchema();
    } catch(ClassCastException e) {
      // ignore and return true as this is not a drill schema
    }
    return true;
  }
View Full Code Here

Examples of org.apache.drill.exec.store.AbstractSchema.showInInformationSchema()

  }

  protected boolean shouldVisitSchema(SchemaPlus schema) {
    try {
      AbstractSchema drillSchema = schema.unwrap(AbstractSchema.class);
      return drillSchema.showInInformationSchema();
    } catch(ClassCastException e) {
      // ignore and return true as this is not a drill schema
    }
    return true;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.