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

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

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

Table.getProperty介绍

暂无

代码示例

代码示例来源:origin: org.teiid.connectors/translator-mongodb

  1. public boolean isMerged() {
  2. return this.table.getProperty(MongoDBMetadataProcessor.MERGE, false) != null;
  3. }

代码示例来源:origin: org.teiid.connectors/translator-mongodb

  1. public static boolean isEmbeddable(Table tbl) {
  2. return Boolean.parseBoolean(tbl.getProperty(MongoDBMetadataProcessor.EMBEDDABLE, false));
  3. }

代码示例来源:origin: org.teiid.connectors/translator-odata

  1. private static String getEntityTypeName(Table t, boolean preserveEntityTypeName) {
  2. String entityTypeName = t.getName();
  3. if (preserveEntityTypeName && t.getProperty(ODataMetadataProcessor.ENTITY_TYPE, false) != null) {
  4. entityTypeName = t.getProperty(ODataMetadataProcessor.ENTITY_TYPE, false);
  5. }
  6. return entityTypeName;
  7. }

代码示例来源:origin: org.teiid.connectors/translator-excel

  1. @Override
  2. public void visit(NamedTable obj) {
  3. this.table = obj.getMetadataObject();
  4. this.xlsPath = this.table.getProperty(ExcelMetadataProcessor.FILE, false);
  5. this.sheetName = this.table.getSourceName();
  6. String firstRow = this.table.getProperty(ExcelMetadataProcessor.FIRST_DATA_ROW_NUMBER, false);
  7. if (firstRow != null) {
  8. // -1 make it zero based index
  9. this.firstDataRowNumber = Integer.parseInt(firstRow)-1;
  10. }
  11. }

代码示例来源:origin: org.teiid.connectors/translator-odata4

  1. static boolean isNavigationType(Table table) {
  2. ODataType type = ODataType.valueOf(table.getProperty(ODataMetadataProcessor.ODATA_TYPE, false));
  3. return type == ODataType.NAVIGATION || type == ODataType.NAVIGATION_COLLECTION;
  4. }

代码示例来源:origin: org.teiid.connectors/translator-odata

  1. Table getTableWithEntityType(Schema schema, String entityType) {
  2. for (Table t:schema.getTables().values()) {
  3. if (entityType.equals(t.getProperty(ODataMetadataProcessor.ENTITY_TYPE, false))) {
  4. return t;
  5. }
  6. }
  7. return null;
  8. }

代码示例来源:origin: org.teiid.connectors/translator-odata4

  1. static boolean isCollection(Table table) {
  2. ODataType type = ODataType.valueOf(table.getProperty(ODataMetadataProcessor.ODATA_TYPE, false));
  3. return type == ODataType.ENTITY_COLLECTION
  4. || type == ODataType.COMPLEX_COLLECTION
  5. || type == ODataType.NAVIGATION_COLLECTION;
  6. }

代码示例来源:origin: org.teiid.connectors/translator-odata4

  1. static boolean isEntitySet(Table table) {
  2. ODataType type = ODataType.valueOf(table.getProperty(ODataMetadataProcessor.ODATA_TYPE, false));
  3. return type == ODataType.ENTITY_COLLECTION;
  4. }

代码示例来源:origin: org.teiid.connectors/translator-odata4

  1. static boolean isComplexType(Table table) {
  2. ODataType type = ODataType.valueOf(table.getProperty(ODataMetadataProcessor.ODATA_TYPE, false));
  3. return type == ODataType.COMPLEX || type == ODataType.COMPLEX_COLLECTION;
  4. }

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

  1. public int resetPendingJob(final VDBMetaData vdb, final Table table, String nodeName){
  2. try {
  3. String statusTable = table.getProperty(MaterializationMetadataRepository.MATVIEW_STATUS_TABLE, false);
  4. String updateStatusTable = "UPDATE "+statusTable+" SET LOADSTATE='NEEDS_LOADING' "
  5. + "WHERE LOADSTATE = 'LOADING' AND NODENAME = '"+nodeName+"' "
  6. + "AND NAME = '"+table.getName()+"'";
  7. List<Map<String, String>> results = executeQuery(vdb, updateStatusTable);
  8. String count = results.get(0).get("update-count");
  9. return Integer.parseInt(count);
  10. } catch (SQLException e) {
  11. LogManager.logWarning(LogConstants.CTX_MATVIEWS, e, e.getMessage());
  12. }
  13. return 0;
  14. }

代码示例来源:origin: org.teiid.connectors/translator-salesforce

  1. @Override
  2. public void visit(NamedTable obj) {
  3. try {
  4. table = obj.getMetadataObject();
  5. String supportsQuery = table.getProperty(Constants.SUPPORTS_QUERY, true);
  6. objectSupportsRetrieve = Boolean.valueOf(table.getProperty(Constants.SUPPORTS_RETRIEVE, true));
  7. if (supportsQuery != null && !Boolean.valueOf(supportsQuery)) {
  8. throw new TranslatorException(table.getSourceName() + " " + SalesForcePlugin.Util.getString("CriteriaVisitor.query.not.supported")); //$NON-NLS-1$ //$NON-NLS-2$
  9. }
  10. loadColumnMetadata(obj);
  11. } catch (TranslatorException ce) {
  12. exceptions.add(ce);
  13. }
  14. }

代码示例来源:origin: org.teiid.connectors/translator-salesforce

  1. @Override
  2. public void visit(NamedTable obj) {
  3. //since this is hint driven we'll assume that it is used selectively
  4. if (!allowed.contains(obj.getMetadataObject().getSourceName())
  5. && !Boolean.valueOf(obj.getMetadataObject().getProperty(SalesForceMetadataProcessor.TABLE_CUSTOM, false))) {
  6. usePkChunking = false;
  7. }
  8. }

代码示例来源:origin: org.teiid.connectors/translator-jdbc

  1. private boolean isTVF(TableReference table) {
  2. if (table instanceof NamedTable) {
  3. String value = ((NamedTable)table).getMetadataObject().getProperty(PIMetadataProcessor.TVF, false);
  4. return Boolean.parseBoolean(value);
  5. } else if (table instanceof NamedProcedureCall) {
  6. String value = ((NamedProcedureCall)table).getCall().getMetadataObject().getProperty(PIMetadataProcessor.TVF, false);
  7. return Boolean.parseBoolean(value);
  8. }
  9. return false;
  10. }

代码示例来源: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: org.teiid.connectors/translator-mongodb

  1. public Table getMergeTable() throws TranslatorException {
  2. String tblName = this.table.getProperty(MongoDBMetadataProcessor.MERGE, false);
  3. if (tblName == null) {
  4. return null;
  5. }
  6. Table mergeTable = this.metadata.getTable(this.table.getParent().getName(), tblName);
  7. return mergeTable;
  8. }

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

  1. private static void removeTableOption(String key, Table table) {
  2. if (table.getProperty(key, false) != null) {
  3. table.setProperty(key, null);
  4. }
  5. removeCommonProperty(key, table);
  6. if (key.equals(DDLConstants.MATERIALIZED)) {
  7. table.setMaterialized(false);
  8. }
  9. if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
  10. table.setMaterializedTable(null);
  11. }
  12. if (key.equals(DDLConstants.UPDATABLE)) {
  13. table.setSupportsUpdate(false);
  14. }
  15. if (key.equals(DDLConstants.CARDINALITY)) {
  16. table.setCardinality(-1);
  17. }
  18. }

代码示例来源:origin: org.teiid.connectors/translator-odata

  1. private Table getEntityTable(MetadataFactory mf, EdmEntityType toEntity) throws TranslatorException {
  2. for (Table t:mf.getSchema().getTables().values()) {
  3. if (t.getProperty(ENTITY_TYPE, false).equals(toEntity.getFullyQualifiedTypeName())){
  4. return t;
  5. }
  6. }
  7. throw new TranslatorException(ODataPlugin.Util.gs(ODataPlugin.Event.TEIID17004, toEntity.getFullyQualifiedTypeName()));
  8. }

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

  1. @Test
  2. public void testAlterTableModifyOptions() throws Exception {
  3. String ddl = "CREATE FOREIGN TABLE G1( e1 integer, e2 varchar, e3 date) OPTIONS(CARDINALITY 12, FOO 'BAR');" +
  4. "ALTER FOREIGN TABLE G1 OPTIONS(SET CARDINALITY 24);" +
  5. "ALTER FOREIGN TABLE G1 OPTIONS(SET FOO 'BARBAR');";
  6. Schema s = helpParse(ddl, "model").getSchema();
  7. Map<String, Table> tableMap = s.getTables();
  8. assertTrue("Table not found", tableMap.containsKey("G1"));
  9. Table table = tableMap.get("G1");
  10. assertEquals(24, table.getCardinality());
  11. assertEquals("BARBAR", table.getProperty("FOO", false));
  12. }

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

  1. @Test
  2. public void testAlterTableDropOptions() throws Exception {
  3. String ddl = "CREATE FOREIGN TABLE G1( e1 integer, e2 varchar, e3 date) OPTIONS(CARDINALITY 12, FOO 'BAR');" +
  4. "ALTER FOREIGN TABLE G1 OPTIONS(DROP CARDINALITY);" +
  5. "ALTER FOREIGN TABLE G1 OPTIONS(DROP FOO);";
  6. Schema s = helpParse(ddl, "model").getSchema();
  7. Map<String, Table> tableMap = s.getTables();
  8. assertTrue("Table not found", tableMap.containsKey("G1"));
  9. Table table = tableMap.get("G1");
  10. assertEquals(-1, table.getCardinality());
  11. assertNull(table.getProperty("FOO", false));
  12. }

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

  1. @Test
  2. public void testAlterTableAddOptions() throws Exception {
  3. String ddl = "CREATE FOREIGN TABLE G1( e1 integer, e2 varchar, e3 date);" +
  4. "ALTER FOREIGN TABLE G1 OPTIONS(ADD CARDINALITY 12);" +
  5. "ALTER FOREIGN TABLE G1 OPTIONS(ADD FOO 'BAR');";
  6. Schema s = helpParse(ddl, "model").getSchema();
  7. Map<String, Table> tableMap = s.getTables();
  8. assertTrue("Table not found", tableMap.containsKey("G1"));
  9. Table table = tableMap.get("G1");
  10. assertEquals(12, table.getCardinality());
  11. assertEquals("BAR", table.getProperty("FOO", false));
  12. }

相关文章