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

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

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

Table.getMaterializedTable介绍

暂无

代码示例

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

  1. /**
  2. * @see org.teiid.query.metadata.QueryMetadataInterface#getMaterialization(java.lang.Object)
  3. * @since 4.2
  4. */
  5. public Object getMaterialization(final Object groupID) throws TeiidComponentException,
  6. QueryMetadataException {
  7. Table tableRecord = (Table) groupID;
  8. if(tableRecord.isMaterialized()) {
  9. return tableRecord.getMaterializedTable();
  10. }
  11. return null;
  12. }

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

  1. /**
  2. * @see org.teiid.query.metadata.QueryMetadataInterface#getMaterialization(java.lang.Object)
  3. * @since 4.2
  4. */
  5. public Object getMaterialization(final Object groupID) throws TeiidComponentException,
  6. QueryMetadataException {
  7. Table tableRecord = (Table) groupID;
  8. if(tableRecord.isMaterialized()) {
  9. return tableRecord.getMaterializedTable();
  10. }
  11. return null;
  12. }

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

  1. /**
  2. * @see org.teiid.query.metadata.QueryMetadataInterface#getMaterialization(java.lang.Object)
  3. * @since 4.2
  4. */
  5. public Object getMaterialization(final Object groupID) throws TeiidComponentException,
  6. QueryMetadataException {
  7. Table tableRecord = (Table) groupID;
  8. if(tableRecord.isMaterialized()) {
  9. return tableRecord.getMaterializedTable();
  10. }
  11. return null;
  12. }

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

  1. @Override
  2. public void process(Table table) {
  3. if (table.getMaterializedTable() == null) {
  4. return;
  5. }
  6. String remove = table.getProperty(MaterializationMetadataRepository.ON_VDB_DROP_SCRIPT, false);
  7. if (remove != null) {
  8. try {
  9. executeQuery(vdb, remove);
  10. } catch (SQLException e) {
  11. LogManager.logWarning(LogConstants.CTX_MATVIEWS, e, e.getMessage());
  12. }
  13. }
  14. }
  15. });

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

  1. Integer cardinaltity = null;
  2. Boolean valid = null;
  3. if (table.getMaterializedTable() == null) {
  4. GlobalTableStore globalStore = cc.getGlobalTableStore();
  5. matTableName = RelationalPlanner.MAT_PREFIX+table.getFullName().toUpperCase();
  6. Table t = table.getMaterializedTable();
  7. matTableName = t.getName();
  8. targetSchema = t.getParent().getName();

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

  1. Integer cardinaltity = null;
  2. Boolean valid = null;
  3. if (table.getMaterializedTable() == null) {
  4. GlobalTableStore globalStore = cc.getGlobalTableStore();
  5. matTableName = RelationalPlanner.MAT_PREFIX+table.getFullName().toUpperCase();
  6. Table t = table.getMaterializedTable();
  7. matTableName = t.getName();
  8. targetSchema = t.getParent().getName();

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

  1. @Override
  2. public void loadMetadata(MetadataFactory factory, ExecutionFactory executionFactory, Object connectionFactory) throws TranslatorException {
  3. for (Table table:factory.getSchema().getTables().values()){
  4. if (table.isMaterialized()) {
  5. // external materialization
  6. if (table.getMaterializedTable() != null) {
  7. String manage = table.getProperty(ALLOW_MATVIEW_MANAGEMENT, false);
  8. if (!Boolean.valueOf(manage)) {
  9. continue;
  10. }
  11. fixScript(ON_VDB_START_SCRIPT, table);
  12. fixScript(ON_VDB_DROP_SCRIPT, table);
  13. fixScript(MATVIEW_BEFORE_LOAD_SCRIPT, table);
  14. fixScript(MATVIEW_AFTER_LOAD_SCRIPT, table);
  15. fixScript(MATVIEW_LOAD_SCRIPT, table);
  16. }
  17. else {
  18. // internal materialization
  19. }
  20. }
  21. }
  22. }

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

  1. @Override
  2. public void process(final Table table) {
  3. if (table.getMaterializedTable() == null) {
  4. createInternalMaterializationJobs(cvdb, vdb, table);
  5. return;

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

  1. @Override
  2. public void loadMetadata(MetadataFactory factory, ExecutionFactory executionFactory, Object connectionFactory) throws TranslatorException {
  3. for (Table table:factory.getSchema().getTables().values()){
  4. if (table.isMaterialized()) {
  5. // external materialization
  6. if (table.getMaterializedTable() != null) {
  7. String manage = table.getProperty(ALLOW_MATVIEW_MANAGEMENT, false);
  8. if (!Boolean.valueOf(manage)) {
  9. continue;
  10. }
  11. fixScript(ON_VDB_START_SCRIPT, table);
  12. fixScript(ON_VDB_DROP_SCRIPT, table);
  13. fixScript(MATVIEW_BEFORE_LOAD_SCRIPT, table);
  14. fixScript(MATVIEW_AFTER_LOAD_SCRIPT, table);
  15. fixScript(MATVIEW_LOAD_SCRIPT, table);
  16. }
  17. else {
  18. // internal materialization
  19. }
  20. }
  21. }
  22. }

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

  1. @Override
  2. public void loadMetadata(MetadataFactory factory, ExecutionFactory executionFactory, Object connectionFactory) throws TranslatorException {
  3. for (Table table:factory.getSchema().getTables().values()){
  4. if (table.isMaterialized()) {
  5. // external materialization
  6. if (table.getMaterializedTable() != null) {
  7. String manage = table.getProperty(ALLOW_MATVIEW_MANAGEMENT, false);
  8. if (!Boolean.valueOf(manage)) {
  9. continue;
  10. }
  11. fixScript(ON_VDB_START_SCRIPT, table);
  12. fixScript(ON_VDB_DROP_SCRIPT, table);
  13. fixScript(MATVIEW_BEFORE_LOAD_SCRIPT, table);
  14. fixScript(MATVIEW_AFTER_LOAD_SCRIPT, table);
  15. fixScript(MATVIEW_LOAD_SCRIPT, table);
  16. }
  17. else {
  18. // internal materialization
  19. }
  20. }
  21. }
  22. }

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

  1. Integer cardinaltity = null;
  2. Boolean valid = null;
  3. if (table.getMaterializedTable() == null) {
  4. GlobalTableStore globalStore = cc.getGlobalTableStore();
  5. matTableName = RelationalPlanner.MAT_PREFIX+table.getFullName().toUpperCase();
  6. Table t = table.getMaterializedTable();
  7. matTableName = t.getName();
  8. targetSchema = t.getParent().getName();

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

  1. private String buildTableOptions(Table table) {
  2. StringBuilder options = new StringBuilder();
  3. addCommonOptions(options, table);
  4. if (table.isMaterialized()) {
  5. addOption(options, MATERIALIZED, table.isMaterialized());
  6. if (table.getMaterializedTable() != null) {
  7. addOption(options, MATERIALIZED_TABLE, table.getMaterializedTable().getName());
  8. }
  9. }
  10. if (table.supportsUpdate()) {
  11. addOption(options, UPDATABLE, table.supportsUpdate());
  12. }
  13. if (table.getCardinality() != -1) {
  14. if (table.getCardinality() != table.getCardinalityAsFloat()) {
  15. addOption(options, CARDINALITY, (long)table.getCardinalityAsFloat());
  16. } else {
  17. addOption(options, CARDINALITY, table.getCardinality());
  18. }
  19. }
  20. if (!table.getProperties().isEmpty()) {
  21. for (String key:table.getProperties().keySet()) {
  22. addOption(options, key, table.getProperty(key, false));
  23. }
  24. }
  25. return options.toString();
  26. }

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

  1. private String buildTableOptions(Table table) {
  2. StringBuilder options = new StringBuilder();
  3. addCommonOptions(options, table);
  4. if (table.isMaterialized()) {
  5. addOption(options, MATERIALIZED, table.isMaterialized());
  6. if (table.getMaterializedTable() != null) {
  7. addOption(options, MATERIALIZED_TABLE, table.getMaterializedTable().getName());
  8. }
  9. }
  10. if (table.supportsUpdate()) {
  11. addOption(options, UPDATABLE, table.supportsUpdate());
  12. }
  13. if (table.getCardinality() != -1) {
  14. if (table.getCardinality() != table.getCardinalityAsFloat()) {
  15. addOption(options, CARDINALITY, (long)table.getCardinalityAsFloat());
  16. } else {
  17. addOption(options, CARDINALITY, table.getCardinality());
  18. }
  19. }
  20. if (!table.getProperties().isEmpty()) {
  21. for (String key:table.getProperties().keySet()) {
  22. addOption(options, key, table.getProperty(key, false));
  23. }
  24. }
  25. return options.toString();
  26. }

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

  1. private String buildTableOptions(Table table) {
  2. StringBuilder options = new StringBuilder();
  3. addCommonOptions(options, table);
  4. if (table.isMaterialized()) {
  5. addOption(options, MATERIALIZED, table.isMaterialized());
  6. if (table.getMaterializedTable() != null) {
  7. addOption(options, MATERIALIZED_TABLE, table.getMaterializedTable().getName());
  8. }
  9. }
  10. if (table.supportsUpdate()) {
  11. addOption(options, UPDATABLE, table.supportsUpdate());
  12. }
  13. if (table.getCardinality() != -1) {
  14. if (table.getCardinality() != table.getCardinalityAsFloat()) {
  15. addOption(options, CARDINALITY, (long)table.getCardinalityAsFloat());
  16. } else {
  17. addOption(options, CARDINALITY, table.getCardinality());
  18. }
  19. }
  20. if (!table.getProperties().isEmpty()) {
  21. for (String key:table.getProperties().keySet()) {
  22. addOption(options, key, table.getProperty(key, false));
  23. }
  24. }
  25. return options.toString();
  26. }

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

  1. if (table.getMaterializedTable() != null) {
  2. addStringAnnotation(entityType, "teiid.MATERIALIZED_TABLE", table.getMaterializedTable().getFullName());

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

  1. Schema schema = store.getSchema(model.getName());
  2. for (Table t:schema.getTables().values()) {
  3. if (t.isVirtual() && t.isMaterialized() && t.getMaterializedTable() != null) {
  4. String allow = t.getProperty(MaterializationMetadataRepository.ALLOW_MATVIEW_MANAGEMENT, false);
  5. if (allow == null || !Boolean.valueOf(allow)) {

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

  1. @Test
  2. public void testExternalMaterializationValidate() throws Exception {
  3. String ddl = "CREATE FOREIGN TABLE G1(e1 integer, e2 varchar);"
  4. + STATUS;
  5. String ddl2 = "CREATE VIEW G2 OPTIONS (MATERIALIZED 'true', MATERIALIZED_TABLE 'pm1.G1', \"teiid_rel:MATVIEW_STATUS_TABLE\" 'pm1.status', \"teiid_rel:MATVIEW_LOAD_SCRIPT\" 'begin end') AS SELECT * FROM pm1.G1";
  6. buildModel("pm1", true, this.vdb, this.store, ddl);
  7. buildModel("vm1", false, this.vdb, this.store, ddl2);
  8. buildTransformationMetadata();
  9. ValidatorReport report = new ValidatorReport();
  10. report = new MetadataValidator().validate(this.vdb, this.store);
  11. assertFalse(printError(report), report.hasItems());
  12. assertNotNull("pm1.G1", store.getSchema("vm1").getTable("G2").getMaterializedTable());
  13. assertEquals("G1", store.getSchema("vm1").getTable("G2").getMaterializedTable().getName());
  14. }

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

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

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

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

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

  1. if (t.isVirtual() && t.isMaterialized() && t.getMaterializedTable() == null) {
  2. List<KeyRecord> fbis = t.getFunctionBasedIndexes();
  3. List<GroupSymbol> groups = Arrays.asList(symbol);

相关文章