Exemplo n.º 1
0
 public Table(
     Namespace namespace, Identifier physicalTableName, String subselect, boolean isAbstract) {
   this.catalog = namespace.getPhysicalName().getCatalog();
   this.schema = namespace.getPhysicalName().getSchema();
   this.name = physicalTableName;
   this.subselect = subselect;
   this.isAbstract = isAbstract;
 }