We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 330f375 commit ee3e0f2Copy full SHA for ee3e0f2
src/ast/mod.rs
@@ -2038,10 +2038,10 @@ impl fmt::Display for Statement {
2038
}
2039
2040
if let Some(HiveFormat {
2041
- row_format,
2042
- storage,
2043
- location,
2044
- }) = hive_formats
+ row_format,
+ storage,
+ location,
+ }) = hive_formats
2045
{
2046
match row_format {
2047
Some(HiveRowFormat::SERDE { class }) => {
@@ -2052,9 +2052,9 @@ impl fmt::Display for Statement {
2052
2053
match storage {
2054
Some(HiveIOFormat::IOF {
2055
- input_format,
2056
- output_format,
2057
- }) => write!(
+ input_format,
+ output_format,
+ }) => write!(
2058
f,
2059
" STORED AS INPUTFORMAT {} OUTPUTFORMAT {}",
2060
input_format, output_format
0 commit comments