xudong963 commented on pull request #1067:
URL: https://github.com/apache/arrow-datafusion/pull/1067#issuecomment-938362066


   CI seems to be unstable. 
   ```python
   =================================== FAILURES 
===================================
   _____________________________ test_math_functions 
______________________________
   
   df = <builtins.DataFrame object at 0x7f37c5055630>
   
       def test_math_functions(df):
           values = np.array([0.1, -0.7, 0.55])
           col_v = f.col("value")
           df = df.select(
               f.abs(col_v),
               f.sin(col_v),
               f.cos(col_v),
               f.tan(col_v),
               f.asin(col_v),
               f.acos(col_v),
               f.exp(col_v),
               f.ln(col_v + f.lit(1)),
               f.log2(col_v + f.lit(1)),
               f.log10(col_v + f.lit(1)),
               f.random(),
           )
   >       result = df.collect()
   E       Exception: DataFusion error: Plan("No field named 
'<unqualified>.0QsBN24Phk.value'. Valid fields are '0QsBN24Phk.value'.")
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to