Commit f34b5c6
[SQL][MINOR] Fix minor formatting issues in SHOW CREATE TABLE output
## What changes were proposed in this pull request?
This PR fixes two minor formatting issues appearing in `SHOW CREATE TABLE` output.
Before:
```
CREATE EXTERNAL TABLE ...
...
WITH SERDEPROPERTIES ('serialization.format' = '1'
)
...
TBLPROPERTIES ('avro.schema.url' = '/tmp/avro/test.avsc',
'transient_lastDdlTime' = '1466638180')
```
After:
```
CREATE EXTERNAL TABLE ...
...
WITH SERDEPROPERTIES (
'serialization.format' = '1'
)
...
TBLPROPERTIES (
'avro.schema.url' = '/tmp/avro/test.avsc',
'transient_lastDdlTime' = '1466638180'
)
```
## How was this patch tested?
Manually tested.
Author: Cheng Lian <lian@databricks.com>
Closes apache#13864 from liancheng/show-create-table-format-fix.1 parent 925884a commit f34b5c6
File tree
1 file changed
+2
-2
lines changed- sql/core/src/main/scala/org/apache/spark/sql/execution/command
1 file changed
+2
-2
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
830 | 830 | | |
831 | 831 | | |
832 | 832 | | |
833 | | - | |
| 833 | + | |
834 | 834 | | |
835 | 835 | | |
836 | 836 | | |
| |||
864 | 864 | | |
865 | 865 | | |
866 | 866 | | |
867 | | - | |
| 867 | + | |
868 | 868 | | |
869 | 869 | | |
870 | 870 | | |
| |||
0 commit comments