We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24fa19d commit 9ce27c9Copy full SHA for 9ce27c9
tests/test_types.py
@@ -327,15 +327,15 @@ def test_decimal_min_and_max_values(self):
327
328
testdata_defn.build().createOrReplaceTempView("testdata")
329
330
- df2 = spark.sql("""select min(code1) as min1, max(code1) as max1,
331
- min(code2) as min2,
+ df2 = spark.sql("""select min(code1) as min1, max(code1) as max1,
+ min(code2) as min2,
332
max(code2) as max2 ,
333
- min(code3) as min3,
+ min(code3) as min3,
334
max(code3) as max3,
335
- min(code4) as min4,
+ min(code4) as min4,
336
max(code4) as max4,
337
- min(code5) as min5,
338
- max(code5) as max5
+ min(code5) as min5,
+ max(code5) as max5
339
from testdata group by group1 """)
340
341
results = df2.collect()[0]
0 commit comments