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

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

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

Table.isPhysical介绍

暂无

代码示例

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

  1. @Override
  2. public void fillRow(List<Object> row, Table table,
  3. VDBMetaData v, TransformationMetadata metadata,
  4. CommandContext cc, SimpleIterator<Table> iter) {
  5. row.add(v.getName());
  6. row.add(table.getParent().getName());
  7. row.add(table.getName());
  8. row.add(table.getTableType().toString());
  9. row.add(table.getNameInSource());
  10. row.add(table.isPhysical());
  11. row.add(table.supportsUpdate());
  12. row.add(table.getUUID());
  13. row.add(table.getCardinality());
  14. row.add(table.getAnnotation());
  15. row.add(table.isSystem());
  16. row.add(table.isMaterialized());
  17. row.add(table.getParent().getUUID());
  18. }
  19. });

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

  1. @Override
  2. public void fillRow(List<Object> row, Table table,
  3. VDBMetaData v, TransformationMetadata metadata,
  4. CommandContext cc, SimpleIterator<Table> iter) {
  5. row.add(v.getName());
  6. row.add(table.getParent().getName());
  7. row.add(table.getName());
  8. row.add(table.getTableType().toString());
  9. row.add(table.getNameInSource());
  10. row.add(table.isPhysical());
  11. row.add(table.supportsUpdate());
  12. row.add(table.getUUID());
  13. row.add(table.getCardinality());
  14. row.add(table.getAnnotation());
  15. row.add(table.isSystem());
  16. row.add(table.isMaterialized());
  17. row.add(table.getParent().getUUID());
  18. }
  19. });

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

  1. @Override
  2. public void fillRow(List<Object> row, Table table,
  3. VDBMetaData v, TransformationMetadata metadata,
  4. CommandContext cc, SimpleIterator<Table> iter) {
  5. row.add(v.getName());
  6. row.add(table.getParent().getName());
  7. row.add(table.getName());
  8. row.add(table.getTableType().toString());
  9. row.add(table.getNameInSource());
  10. row.add(table.isPhysical());
  11. row.add(table.supportsUpdate());
  12. row.add(table.getUUID());
  13. row.add(table.getCardinality());
  14. row.add(table.getAnnotation());
  15. row.add(table.isSystem());
  16. row.add(table.isMaterialized());
  17. row.add(table.getParent().getUUID());
  18. }
  19. });

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

  1. private void listPhysicalTables(Collection<AbstractMetadataRecord> records, TableFilter tableFilter) {
  2. for (AbstractMetadataRecord record : records) {
  3. if (record instanceof Table) {
  4. Table table = (Table)record;
  5. if (table.isPhysical()) {
  6. tableFilter.accept(table);
  7. } else {
  8. listPhysicalTables(table.getIncomingObjects(), tableFilter);
  9. }
  10. } else if (record instanceof Procedure) {
  11. Procedure proc = (Procedure)record;
  12. if (proc.isVirtual()) {
  13. listPhysicalTables(proc.getIncomingObjects(), tableFilter);
  14. }
  15. }
  16. }
  17. }

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

  1. private void listPhysicalTables(Collection<AbstractMetadataRecord> records, TableFilter tableFilter) {
  2. for (AbstractMetadataRecord record : records) {
  3. if (record instanceof Table) {
  4. Table table = (Table)record;
  5. if (table.isPhysical()) {
  6. tableFilter.accept(table);
  7. } else {
  8. listPhysicalTables(table.getIncomingObjects(), tableFilter);
  9. }
  10. } else if (record instanceof Procedure) {
  11. Procedure proc = (Procedure)record;
  12. if (proc.isVirtual()) {
  13. listPhysicalTables(proc.getIncomingObjects(), tableFilter);
  14. }
  15. }
  16. }
  17. }

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

  1. @Override
  2. public void loadMetadata(MetadataFactory factory,
  3. ExecutionFactory<Object, Object> executionFactory, Object connectionFactory)
  4. throws TranslatorException {
  5. Schema s = factory.getSchema();
  6. for (Table t : s.getTables().values()) {
  7. if (!t.isPhysical()) {
  8. continue;
  9. }
  10. Column c = t.getColumnByName(multiSourceColumnName);
  11. if (c == null) {
  12. c = factory.addColumn(multiSourceColumnName, DataTypeManager.DefaultDataTypes.STRING, t);
  13. MultiSourceMetadataWrapper.setMultiSourceElementMetadata(c);
  14. }
  15. }
  16. outer: for (Procedure p : s.getProcedures().values()) {
  17. if (p.isVirtual()) {
  18. continue;
  19. }
  20. for (ProcedureParameter pp : p.getParameters()) {
  21. if (multiSourceColumnName.equalsIgnoreCase(pp.getName())) {
  22. continue outer;
  23. }
  24. }
  25. ProcedureParameter pp = factory.addProcedureParameter(multiSourceColumnName, DataTypeManager.DefaultDataTypes.STRING, Type.In, p);
  26. pp.setNullType(NullType.Nullable);
  27. }
  28. }

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

  1. private void listPhysicalTables(Collection<AbstractMetadataRecord> records, TableFilter tableFilter) {
  2. for (AbstractMetadataRecord record : records) {
  3. if (record instanceof Table) {
  4. Table table = (Table)record;
  5. if (table.isPhysical()) {
  6. tableFilter.accept(table);
  7. } else {
  8. listPhysicalTables(table.getIncomingObjects(), tableFilter);
  9. }
  10. } else if (record instanceof Procedure) {
  11. Procedure proc = (Procedure)record;
  12. if (proc.isVirtual()) {
  13. listPhysicalTables(proc.getIncomingObjects(), tableFilter);
  14. }
  15. }
  16. }
  17. }

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

  1. records.addAll(t.getColumns());
  2. records.addAll(t.getAllKeys());
  3. if (t.isPhysical()) {
  4. TableStats stats = this.getTableStats(vdbName, vdbVersion, t);
  5. if (stats != null) {

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

  1. if (t.isPhysical() && !model.isSource()) {
  2. metadataValidator.log(report, model, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31075, t.getFullName(), model.getName()));

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

  1. if (t.isPhysical() && !model.isSource()) {
  2. metadataValidator.log(report, model, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31075, t.getFullName(), model.getName()));

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

  1. if (t.isPhysical() && !model.isSource()) {
  2. metadataValidator.log(report, model, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31075, t.getFullName(), model.getName()));

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

  1. if (table.isPhysical()) {
  2. append(FOREIGN_TABLE);

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

  1. private void visit(Table table) {
  2. append(CREATE).append(SPACE);
  3. if (table.isPhysical()) {
  4. append(FOREIGN_TABLE);

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

  1. private void visit(Table table) {
  2. append(CREATE).append(SPACE);
  3. if (table.isPhysical()) {
  4. append(FOREIGN_TABLE);

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

  1. assertTrue(table.isPhysical());
  2. assertFalse(table.isVirtual());
  3. assertFalse(table.isSystem());

相关文章