org.apache.hadoop.hive.ql.metadata.Table.isNonNative()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(6.6k)|赞(0)|评价(0)|浏览(233)

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

Table.isNonNative介绍

暂无

代码示例

代码示例来源:origin: apache/hive

  1. static void validateTable(org.apache.hadoop.hive.ql.metadata.Table table) throws SemanticException {
  2. if (table.isNonNative()) {
  3. throw new SemanticException(ErrorMsg.EXIM_FOR_NON_NATIVE.getMsg());
  4. }
  5. }

代码示例来源:origin: apache/drill

  1. static void validateTable(org.apache.hadoop.hive.ql.metadata.Table table) throws SemanticException {
  2. if (table.isNonNative()) {
  3. throw new SemanticException(ErrorMsg.EXIM_FOR_NON_NATIVE.getMsg());
  4. }
  5. }

代码示例来源:origin: apache/hive

  1. public HiveStorageHandler getStorageHandler() {
  2. if (storageHandler != null || !isNonNative()) {
  3. return storageHandler;
  4. }
  5. try {
  6. storageHandler = HiveUtils.getStorageHandler(
  7. SessionState.getSessionConf(),
  8. getProperty(
  9. org.apache.hadoop.hive.metastore.api.hive_metastoreConstants.META_TABLE_STORAGE));
  10. } catch (Exception e) {
  11. throw new RuntimeException(e);
  12. }
  13. return storageHandler;
  14. }

代码示例来源:origin: apache/drill

  1. public HiveStorageHandler getStorageHandler() {
  2. if (storageHandler != null || !isNonNative()) {
  3. return storageHandler;
  4. }
  5. try {
  6. storageHandler = HiveUtils.getStorageHandler(
  7. SessionState.getSessionConf(),
  8. getProperty(
  9. org.apache.hadoop.hive.metastore.api.hive_metastoreConstants.META_TABLE_STORAGE));
  10. } catch (Exception e) {
  11. throw new RuntimeException(e);
  12. }
  13. return storageHandler;
  14. }

代码示例来源:origin: apache/hive

  1. if (table.isNonNative()) {
  2. return true; // nothing can be done

代码示例来源:origin: apache/drill

  1. if (table.isNonNative()) {
  2. return true; // nothing can be done

代码示例来源:origin: apache/hive

  1. if (!tbl.isNonNative()) {
  2. return originalPredicate;

代码示例来源:origin: apache/hive

  1. new MaskAndFilterInfo(colTypes, additionalTabInfo.toString(), alias, astNode, table.isView(), table.isNonNative()));

代码示例来源:origin: apache/hive

  1. private void validateAlterTableType(Table tbl, AlterTableTypes op, boolean expectView)
  2. throws SemanticException {
  3. if (tbl.isView()) {
  4. if (!expectView) {
  5. throw new SemanticException(ErrorMsg.ALTER_COMMAND_FOR_VIEWS.getMsg());
  6. }
  7. switch (op) {
  8. case ADDPARTITION:
  9. case DROPPARTITION:
  10. case RENAMEPARTITION:
  11. case ADDPROPS:
  12. case DROPPROPS:
  13. case RENAME:
  14. // allow this form
  15. break;
  16. default:
  17. throw new SemanticException(ErrorMsg.ALTER_VIEW_DISALLOWED_OP.getMsg(op.toString()));
  18. }
  19. } else {
  20. if (expectView) {
  21. throw new SemanticException(ErrorMsg.ALTER_COMMAND_FOR_TABLES.getMsg());
  22. }
  23. }
  24. if (tbl.isNonNative() && !AlterTableTypes.nonNativeTableAllowedTypes.contains(op)) {
  25. throw new SemanticException(ErrorMsg.ALTER_TABLE_NON_NATIVE.getMsg(tbl.getTableName()));
  26. }
  27. }

代码示例来源:origin: apache/drill

  1. if (!tbl.isNonNative()) {
  2. return originalPredicate;

代码示例来源:origin: apache/hive

  1. /**
  2. * validates if a table can be exported, similar to EximUtil.shouldExport with few replication
  3. * specific checks.
  4. */
  5. public static Boolean shouldReplicate(ReplicationSpec replicationSpec, Table tableHandle,
  6. HiveConf hiveConf) {
  7. if (replicationSpec == null) {
  8. replicationSpec = new ReplicationSpec();
  9. }
  10. if (replicationSpec.isNoop() || tableHandle == null) {
  11. return false;
  12. }
  13. // if its metadata only, then dump metadata of non native tables also.
  14. if (tableHandle.isNonNative() && !replicationSpec.isMetadataOnly()) {
  15. return false;
  16. }
  17. if (replicationSpec.isInReplicationScope()) {
  18. if (tableHandle.isTemporary()) {
  19. return false;
  20. }
  21. if (MetaStoreUtils.isExternalTable(tableHandle.getTTable())) {
  22. return hiveConf.getBoolVar(HiveConf.ConfVars.REPL_INCLUDE_EXTERNAL_TABLES) || replicationSpec.isMetadataOnly();
  23. }
  24. }
  25. return true;
  26. }

代码示例来源:origin: apache/hive

  1. if(!tab.isNonNative()) {

代码示例来源:origin: apache/hive

  1. /**
  2. * Validate noscan command
  3. *
  4. * @param tree
  5. * @throws SemanticException
  6. */
  7. private void validateAnalyzeNoscan(ASTNode tree) throws SemanticException {
  8. // since it is noscan, it is true table name in command
  9. String tableName = getUnescapedName((ASTNode) tree.getChild(0).getChild(0));
  10. Table tbl;
  11. try {
  12. tbl = this.getTableObjectByName(tableName);
  13. } catch (InvalidTableException e) {
  14. throw new SemanticException(ErrorMsg.INVALID_TABLE.getMsg(tableName), e);
  15. }
  16. catch (HiveException e) {
  17. throw new SemanticException(e.getMessage(), e);
  18. }
  19. /* noscan uses hdfs apis to retrieve such information from Namenode. */
  20. /* But that will be specific to hdfs. Through storagehandler mechanism, */
  21. /* storage of table could be on any storage system: hbase, cassandra etc. */
  22. /* A nice error message should be given to user. */
  23. if (tbl.isNonNative()) {
  24. throw new SemanticException(ErrorMsg.ANALYZE_TABLE_NOSCAN_NON_NATIVE.getMsg(tbl
  25. .getTableName()));
  26. }
  27. }

代码示例来源:origin: apache/drill

  1. private void validateAlterTableType(Table tbl, AlterTableTypes op, boolean expectView)
  2. throws SemanticException {
  3. if (tbl.isView()) {
  4. if (!expectView) {
  5. throw new SemanticException(ErrorMsg.ALTER_COMMAND_FOR_VIEWS.getMsg());
  6. }
  7. switch (op) {
  8. case ADDPARTITION:
  9. case DROPPARTITION:
  10. case RENAMEPARTITION:
  11. case ADDPROPS:
  12. case DROPPROPS:
  13. case RENAME:
  14. // allow this form
  15. break;
  16. default:
  17. throw new SemanticException(ErrorMsg.ALTER_VIEW_DISALLOWED_OP.getMsg(op.toString()));
  18. }
  19. } else {
  20. if (expectView) {
  21. throw new SemanticException(ErrorMsg.ALTER_COMMAND_FOR_TABLES.getMsg());
  22. }
  23. }
  24. if (tbl.isNonNative()) {
  25. throw new SemanticException(ErrorMsg.ALTER_TABLE_NON_NATIVE.getMsg(tbl.getTableName()));
  26. }
  27. }

代码示例来源:origin: apache/drill

  1. /**
  2. * Validate noscan command
  3. *
  4. * @param tree
  5. * @throws SemanticException
  6. */
  7. private void validateAnalyzeNoscan(ASTNode tree) throws SemanticException {
  8. // since it is noscan, it is true table name in command
  9. String tableName = getUnescapedName((ASTNode) tree.getChild(0).getChild(0));
  10. Table tbl;
  11. try {
  12. tbl = this.getTableObjectByName(tableName);
  13. } catch (InvalidTableException e) {
  14. throw new SemanticException(ErrorMsg.INVALID_TABLE.getMsg(tableName), e);
  15. }
  16. catch (HiveException e) {
  17. throw new SemanticException(e.getMessage(), e);
  18. }
  19. /* noscan uses hdfs apis to retrieve such information from Namenode. */
  20. /* But that will be specific to hdfs. Through storagehandler mechanism, */
  21. /* storage of table could be on any storage system: hbase, cassandra etc. */
  22. /* A nice error message should be given to user. */
  23. if (tbl.isNonNative()) {
  24. throw new SemanticException(ErrorMsg.ANALYZE_TABLE_NOSCAN_NON_NATIVE.getMsg(tbl
  25. .getTableName()));
  26. }
  27. }

代码示例来源:origin: apache/drill

  1. throw new SemanticException(ErrorMsg.DML_AGAINST_VIEW.getMsg());
  2. if (ts.tableHandle.isNonNative()) {
  3. throw new SemanticException(ErrorMsg.LOAD_INTO_NON_NATIVE.getMsg());

代码示例来源:origin: apache/hive

  1. if (tblObj.isNonNative()) {
  2. throw new SemanticException(ErrorMsg.CONCATENATE_UNSUPPORTED_TABLE_NON_NATIVE.getMsg());

代码示例来源:origin: apache/hive

  1. throw new SemanticException(ErrorMsg.DML_AGAINST_VIEW.getMsg());
  2. if (ts.tableHandle.isNonNative()) {
  3. throw new SemanticException(ErrorMsg.LOAD_INTO_NON_NATIVE.getMsg());

代码示例来源:origin: apache/hive

  1. if (table.isNonNative()) {
  2. throw new SemanticException(ErrorMsg.TRUNCATE_FOR_NON_NATIVE_TABLE.format(tableName)); //TODO

代码示例来源:origin: apache/drill

  1. if (tbl.isNonNative()) {
  2. throw new SemanticException(ErrorMsg.ANALYZE_TABLE_PARTIALSCAN_NON_NATIVE.getMsg(tbl
  3. .getTableName()));

相关文章

Table类方法