org.teiid.metadata.Table.setMaterializedTable()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(4.8k)|赞(0)|评价(0)|浏览(92)

本文整理了Java中org.teiid.metadata.Table.setMaterializedTable()方法的一些代码示例,展示了Table.setMaterializedTable()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setMaterializedTable()方法的具体详情如下:
包路径:org.teiid.metadata.Table
类名称:Table
方法名:setMaterializedTable

Table.setMaterializedTable介绍

暂无

代码示例

代码示例来源:origin: teiid/teiid

private static void removeTableOption(String key, Table table) {
  if (table.getProperty(key, false) != null) {
    table.setProperty(key, null);
  }
  removeCommonProperty(key, table);
  
  if (key.equals(DDLConstants.MATERIALIZED)) {
    table.setMaterialized(false);
  }
  
  if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
    table.setMaterializedTable(null);
  }
  
  if (key.equals(DDLConstants.UPDATABLE)) {
    table.setSupportsUpdate(false);
  }
  
  if (key.equals(DDLConstants.CARDINALITY)) {
    table.setCardinality(-1);
  }       
}

代码示例来源:origin: org.jboss.teiid/teiid-engine

private static void removeTableOption(String key, Table table) {
  if (table.getProperty(key, false) != null) {
    table.setProperty(key, null);
  }
  removeCommonProperty(key, table);
  
  if (key.equals(DDLConstants.MATERIALIZED)) {
    table.setMaterialized(false);
  }
  
  if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
    table.setMaterializedTable(null);
  }
  
  if (key.equals(DDLConstants.UPDATABLE)) {
    table.setSupportsUpdate(false);
  }
  
  if (key.equals(DDLConstants.CARDINALITY)) {
    table.setCardinality(-1);
  }       
}

代码示例来源:origin: org.teiid/teiid-engine

private static void removeTableOption(String key, Table table) {
  if (table.getProperty(key, false) != null) {
    table.setProperty(key, null);
  }
  removeCommonProperty(key, table);
  
  if (key.equals(DDLConstants.MATERIALIZED)) {
    table.setMaterialized(false);
  }
  
  if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
    table.setMaterializedTable(null);
  }
  
  if (key.equals(DDLConstants.UPDATABLE)) {
    table.setSupportsUpdate(false);
  }
  
  if (key.equals(DDLConstants.CARDINALITY)) {
    table.setCardinality(-1);
  }       
}

代码示例来源:origin: org.teiid/teiid-engine

private static void setTableOptions(Table table) {
  Map<String, String> props = table.getProperties();
  setCommonProperties(table, props);
  
  String value = props.remove(DDLConstants.MATERIALIZED); 
  if (value != null) {
    table.setMaterialized(isTrue(value));
  }
  
  value = props.remove(DDLConstants.MATERIALIZED_TABLE); 
  if (value != null) {
    Table mattable = new Table();
    mattable.setName(value);
    table.setMaterializedTable(mattable);
  }
  
  value = props.remove(DDLConstants.UPDATABLE); 
  if (value != null) {
    table.setSupportsUpdate(isTrue(value));
  }
  
  value = props.remove(DDLConstants.CARDINALITY); 
  if (value != null) {
    table.setCardinality(Long.valueOf(value));
  }
}

代码示例来源:origin: teiid/teiid

private static void setTableOptions(Table table) {
  Map<String, String> props = table.getProperties();
  setCommonProperties(table, props);
  
  String value = props.remove(DDLConstants.MATERIALIZED); 
  if (value != null) {
    table.setMaterialized(isTrue(value));
  }
  
  value = props.remove(DDLConstants.MATERIALIZED_TABLE); 
  if (value != null) {
    Table mattable = new Table();
    mattable.setName(value);
    table.setMaterializedTable(mattable);
  }
  
  value = props.remove(DDLConstants.UPDATABLE); 
  if (value != null) {
    table.setSupportsUpdate(isTrue(value));
  }
  
  value = props.remove(DDLConstants.CARDINALITY); 
  if (value != null) {
    table.setCardinality(Long.valueOf(value));
  }
}

代码示例来源:origin: org.jboss.teiid/teiid-engine

private static void setTableOptions(Table table) {
  Map<String, String> props = table.getProperties();
  setCommonProperties(table, props);
  
  String value = props.remove(DDLConstants.MATERIALIZED); 
  if (value != null) {
    table.setMaterialized(isTrue(value));
  }
  
  value = props.remove(DDLConstants.MATERIALIZED_TABLE); 
  if (value != null) {
    Table mattable = new Table();
    mattable.setName(value);
    table.setMaterializedTable(mattable);
  }
  
  value = props.remove(DDLConstants.UPDATABLE); 
  if (value != null) {
    table.setSupportsUpdate(isTrue(value));
  }
  
  value = props.remove(DDLConstants.CARDINALITY); 
  if (value != null) {
    table.setCardinality(Long.valueOf(value));
  }
}

代码示例来源:origin: org.teiid/teiid-metadata

table.setMaterializedTable(matTable);

代码示例来源:origin: teiid/teiid

table.setMaterializedTable(matTable);

代码示例来源:origin: org.teiid/teiid-engine

t.setMaterializedTable(matTable);

代码示例来源:origin: teiid/teiid

t.setMaterializedTable(matTable);

代码示例来源:origin: org.jboss.teiid/teiid-engine

t.setMaterializedTable(matTable);

代码示例来源:origin: org.teiid/teiid-metadata

tableRecord.setMaterializedTable((Table)getByType(MetadataConstants.RECORD_TYPE.TABLE).get(tableRecord.getMaterializedTable().getUUID()));

代码示例来源:origin: teiid/teiid

tableRecord.setMaterializedTable((Table)getByType(MetadataConstants.RECORD_TYPE.TABLE).get(tableRecord.getMaterializedTable().getUUID()));

代码示例来源:origin: teiid/teiid

virtGroup.setMaterializedTable(physGroup);
virtGroup.setMaterializedStageTable(physGroupStage);
virtGroupManaged.setMaterializedTable(physGroup);
virtGroupManaged.setMaterializedStageTable(physGroupStage);
virtGroupManaged.setProperty(MaterializationMetadataRepository.ALLOW_MATVIEW_MANAGEMENT, "true");
               new String[] { DataTypeManager.DefaultDataTypes.STRING});
virtGroup1.setMaterializedTable(physGroup1);
virtGroup1.setMaterializedStageTable(physGroupStage1);

相关文章

微信公众号

最新文章

更多