}
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;
}