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

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

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

Table.isVirtual介绍

暂无

代码示例

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

  1. public boolean isPhysical() {
  2. return !isVirtual();
  3. }

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

  1. public boolean isVirtualGroup(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. if (groupID instanceof Table) {
  3. return ((Table) groupID).isVirtual();
  4. }
  5. if (groupID instanceof Procedure) {
  6. return ((Procedure) groupID).isVirtual();
  7. }
  8. throw createInvalidRecordTypeException(groupID);
  9. }

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

  1. public boolean isVirtualGroup(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. if (groupID instanceof Table) {
  3. return ((Table) groupID).isVirtual();
  4. }
  5. if (groupID instanceof Procedure) {
  6. return ((Procedure) groupID).isVirtual();
  7. }
  8. throw createInvalidRecordTypeException(groupID);
  9. }

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

  1. public boolean isVirtualGroup(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. if (groupID instanceof Table) {
  3. return ((Table) groupID).isVirtual();
  4. }
  5. if (groupID instanceof Procedure) {
  6. return ((Procedure) groupID).isVirtual();
  7. }
  8. throw createInvalidRecordTypeException(groupID);
  9. }

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

  1. public QueryNode getVirtualPlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecord = (Table) groupID;
  3. if (!tableRecord.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecord.getFullName(), "Query")); //$NON-NLS-1$
  5. }
  6. LiveTableQueryNode queryNode = new LiveTableQueryNode(tableRecord);
  7. return queryNode;
  8. }

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

  1. public QueryNode getVirtualPlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecord = (Table) groupID;
  3. if (!tableRecord.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecord.getFullName(), "Query")); //$NON-NLS-1$
  5. }
  6. LiveTableQueryNode queryNode = new LiveTableQueryNode(tableRecord);
  7. return queryNode;
  8. }

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

  1. public String getInsertPlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Insert")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isInsertPlanEnabled()?tableRecordImpl.getInsertPlan():null;
  7. }

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

  1. public String getInsertPlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Insert")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isInsertPlanEnabled()?tableRecordImpl.getInsertPlan():null;
  7. }

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

  1. public String getDeletePlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Delete")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isDeletePlanEnabled()?tableRecordImpl.getDeletePlan():null;
  7. }

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

  1. public String getUpdatePlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Update")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isUpdatePlanEnabled()?tableRecordImpl.getUpdatePlan():null;
  7. }

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

  1. public String getInsertPlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Insert")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isInsertPlanEnabled()?tableRecordImpl.getInsertPlan():null;
  7. }

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

  1. public String getDeletePlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Delete")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isDeletePlanEnabled()?tableRecordImpl.getDeletePlan():null;
  7. }

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

  1. public String getUpdatePlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Update")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isUpdatePlanEnabled()?tableRecordImpl.getUpdatePlan():null;
  7. }

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

  1. public String getDeletePlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Delete")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isDeletePlanEnabled()?tableRecordImpl.getDeletePlan():null;
  7. }

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

  1. public String getUpdatePlan(final Object groupID) throws TeiidComponentException, QueryMetadataException {
  2. Table tableRecordImpl = (Table)groupID;
  3. if (!tableRecordImpl.isVirtual()) {
  4. throw new QueryMetadataException(QueryPlugin.Event.TEIID30359, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30359, tableRecordImpl.getFullName(), "Update")); //$NON-NLS-1$
  5. }
  6. return tableRecordImpl.isUpdatePlanEnabled()?tableRecordImpl.getUpdatePlan():null;
  7. }

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

  1. public void setViewDefinition(final String tableName, final String definition) {
  2. if (!assertInEditMode(Mode.SCHEMA)) {
  3. return;
  4. }
  5. Table table = (Table)getSchemaRecord(tableName, ResourceType.TABLE);
  6. if (!table.isVirtual()) {
  7. throw new org.teiid.metadata.MetadataException(QueryPlugin.Event.TEIID31238,
  8. QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31238, table.getFullName()));
  9. }
  10. assertGrant(Grant.Permission.Privilege.ALTER, Database.ResourceType.TABLE, table);
  11. table.setSelectTransformation(definition);
  12. }

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

  1. public void setViewDefinition(final String tableName, final String definition) {
  2. if (!assertInEditMode(Mode.SCHEMA)) {
  3. return;
  4. }
  5. Table table = (Table)getSchemaRecord(tableName, ResourceType.TABLE);
  6. if (!table.isVirtual()) {
  7. throw new org.teiid.metadata.MetadataException(QueryPlugin.Event.TEIID31238,
  8. QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31238, table.getFullName()));
  9. }
  10. assertGrant(Grant.Permission.Privilege.ALTER, Database.ResourceType.TABLE, table);
  11. table.setSelectTransformation(definition);
  12. }

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

  1. @Test public void testSchemaLoad() throws Exception {
  2. TransformationMetadata tm = VDBMetadataFactory.getVDBMetadata(UnitTestUtil.getTestDataPath() + "/Test.vdb");
  3. //ensure that datatypes are set
  4. Table t = tm.getGroupID("Northwind.Northwind.dbo.Employees");
  5. assertFalse(t.isVirtual());
  6. }

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

  1. public void tableCreated(Table table) {
  2. if (!assertInEditMode(Mode.SCHEMA)) {
  3. return;
  4. }
  5. assertGrant(Grant.Permission.Privilege.CREATE, Database.ResourceType.TABLE, table);
  6. Schema s = getCurrentSchema();
  7. setUUID(s.getUUID(), table);
  8. if (table.isVirtual() && table.getSelectTransformation() == null && table.getTableType() != Type.TemporaryTable) {
  9. throw new org.teiid.metadata.MetadataException(QueryPlugin.Event.TEIID31272,
  10. QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31272, table.getFullName()));
  11. }
  12. s.addTable(table);
  13. }

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

  1. public void tableCreated(Table table) {
  2. if (!assertInEditMode(Mode.SCHEMA)) {
  3. return;
  4. }
  5. assertGrant(Grant.Permission.Privilege.CREATE, Database.ResourceType.TABLE, table);
  6. Schema s = getCurrentSchema();
  7. setUUID(s.getUUID(), table);
  8. if (table.isVirtual() && table.getSelectTransformation() == null && table.getTableType() != Type.TemporaryTable) {
  9. throw new org.teiid.metadata.MetadataException(QueryPlugin.Event.TEIID31272,
  10. QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31272, table.getFullName()));
  11. }
  12. s.addTable(table);
  13. }

相关文章