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

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

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

Table.getFullName介绍

暂无

代码示例

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

  1. private void assignColumn(Table table, ColumnSet<?> columns, String columnName) {
  2. Column column = table.getColumnByName(columnName);
  3. if (column == null) {
  4. throw new MetadataException(DataPlugin.Event.TEIID60011, DataPlugin.Util.gs(DataPlugin.Event.TEIID60011, table.getFullName(), columnName));
  5. }
  6. columns.getColumns().add(column);
  7. }

代码示例来源: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.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: 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.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: org.jboss.teiid/teiid-engine

  1. private void validateUpdatePlan(ModelMetaData model,
  2. ValidatorReport report,
  3. QueryMetadataInterface metadata,
  4. Table t, String plan, int type) throws QueryParserException, QueryResolverException,
  5. TeiidComponentException {
  6. Command command = parser.parseProcedure(plan, true);
  7. QueryResolver.resolveCommand(command, new GroupSymbol(t.getFullName()), type, metadata, false);
  8. //determineDependencies(t, command); -- these should be tracked against triggers
  9. ValidatorReport resolverReport = Validator.validate(command, metadata);
  10. processReport(model, t, report, resolverReport);
  11. }

代码示例来源: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-olingo

  1. public ScopedTable (Table table, EdmEntityType type, List<UriParameter> keys) {
  2. setTable(table);
  3. setEdmEntityType(type);
  4. setGroupSymbol(new GroupSymbol(table.getFullName()));
  5. setKeyPredicates(keys);
  6. }
  7. public ForeignKey getFk() {

代码示例来源: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 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. private void validateUpdatePlan(ModelMetaData model,
  2. ValidatorReport report,
  3. QueryMetadataInterface metadata,
  4. Table t, String plan, int type) throws QueryParserException, QueryResolverException,
  5. TeiidComponentException {
  6. Command command = parser.parseProcedure(plan, true);
  7. validateNoReferences(command, report, model);
  8. QueryResolver.resolveCommand(command, new GroupSymbol(t.getFullName()), type, metadata, false);
  9. //determineDependencies(t, command); -- these should be tracked against triggers
  10. ValidatorReport resolverReport = Validator.validate(command, metadata);
  11. processReport(model, t, report, resolverReport);
  12. }

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

  1. private void validateUpdatePlan(ModelMetaData model,
  2. ValidatorReport report,
  3. QueryMetadataInterface metadata,
  4. Table t, String plan, int type) throws QueryParserException, QueryResolverException,
  5. TeiidComponentException {
  6. Command command = parser.parseProcedure(plan, true);
  7. validateNoReferences(command, report, model);
  8. QueryResolver.resolveCommand(command, new GroupSymbol(t.getFullName()), type, metadata, false);
  9. //determineDependencies(t, command); -- these should be tracked against triggers
  10. ValidatorReport resolverReport = Validator.validate(command, metadata);
  11. processReport(model, t, report, resolverReport);
  12. }

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

  1. private Column addColumn(String name, Class<?> type, Table table, MetadataFactory mf) throws TranslatorException {
  2. if (type == null) {
  3. throw new TranslatorException(QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31086, name, table.getFullName()));
  4. }
  5. Column column = mf.addColumn(name, DataTypeManager.getDataTypeName(type), table);
  6. column.setUpdatable(table.supportsUpdate());
  7. return column;
  8. }

代码示例来源: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. private Column addColumn(Expression toCopy, Table table, MetadataFactory mf, QueryMetadataInterface metadata) throws TranslatorException, QueryMetadataException, TeiidComponentException {
  2. String name = Symbol.getShortName(toCopy);
  3. Class<?> type = toCopy.getType();
  4. if (type == null) {
  5. throw new TranslatorException(QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31086, name, table.getFullName()));
  6. }
  7. Column column = mf.addColumn(name, DataTypeManager.getDataTypeName(type), table);
  8. column.setUpdatable(table.supportsUpdate());
  9. copyExpressionMetadata(toCopy, metadata, column);
  10. return column;
  11. }

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

  1. private Column addColumn(Expression toCopy, Table table, MetadataFactory mf, QueryMetadataInterface metadata) throws TranslatorException, QueryMetadataException, TeiidComponentException {
  2. String name = Symbol.getShortName(toCopy);
  3. Class<?> type = toCopy.getType();
  4. if (type == null) {
  5. throw new TranslatorException(QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31086, name, table.getFullName()));
  6. }
  7. Column column = mf.addColumn(name, DataTypeManager.getDataTypeName(type), table);
  8. column.setUpdatable(table.supportsUpdate());
  9. copyExpressionMetadata(toCopy, metadata, column);
  10. return column;
  11. }

相关文章