[SPARK-32608][SQL][FOLLOW-UP][TEST-HADOOP2.7][TEST-HIVE1.2] Script Transform ROW FORMAT DELIMIT value should format value

### What changes were proposed in this pull request?
As mentioned in https://github.com/apache/spark/pull/29428#issuecomment-678735163 by viirya ,
fix bug in UT, since in script transformation no-serde mode, output of decimal is same in both hive-1.2/hive-2.3

### Why are the changes needed?
FIX UT

### Does this PR introduce _any_ user-facing change?
NO

### How was this patch tested?
EXISTED UT

Closes #29520 from AngersZhuuuu/SPARK-32608-FOLLOW.

Authored-by: angerszhu <angers.zhu@gmail.com>
Signed-off-by: Liang-Chi Hsieh <viirya@gmail.com>
This commit is contained in:
angerszhu 2020-08-23 08:08:55 -07:00 committed by Liang-Chi Hsieh
parent aa0b0b87e2
commit 9808c15eec

View file

@ -345,7 +345,7 @@ abstract class BaseScriptTransformationSuite extends SparkPlanTest with SQLTestU
'a.cast("string"),
'b.cast("string"),
'c.cast("string"),
decimalToString('d),
'd.cast("string"),
'e.cast("string")).collect())
// input/output with different delimit and show result
@ -368,7 +368,7 @@ abstract class BaseScriptTransformationSuite extends SparkPlanTest with SQLTestU
'a.cast("string"),
'b.cast("string"),
'c.cast("string"),
decimalToString('d),
'd.cast("string"),
'e.cast("string"))).collect())
}
}