Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
3.5.0
Description
For example:
CREATE EXTERNAL TABLE test_extaral_1 (a String);
When using SHOW CREATE TABLE test, if it is an external table, it is not displayed whether it is an external table.
spark-sql> show create table test_extaral_1;
createtab_stmt
CREATE TABLE `test`.`test_extaral_1` (
`a` STRING)
USING orc
LOCATION '/test/test_extaral_1'
You can modify the display and see whether it is the appearance。
spark-sql> show create table test_extaral_1;
createtab_stmt
CREATE EXTERNAL TABLE `test`.`test_extaral_1` (
`a` STRING)
USING orc
CREATE EXTERNAL TABLE `test`.`test_extaral_1` (
LOCATION '/test/test_extaral_1'