Re: [VOTE] Release Apache Spark 3.3.3 (RC1)

2023-08-13 Thread Jia Fan
+1 Mridul Muralidharan 于2023年8月11日周五 15:57写道: > > +1 > > Signatures, digests, etc check out fine. > Checked out tag and build/tested with -Phive -Pyarn -Pmesos -Pkubernetes > > Regards, > Mridul > > > On Fri, Aug 11, 2023 at 2:00 AM Cheng Pan wrote: > >> +1 (non-binding) >> >> Passed

Re: Question about ARRAY_INSERT between Spark and Databricks

2023-08-13 Thread Sean Owen
There shouldn't be any difference here. In fact, I get the results you list for 'spark' from Databricks. It's possible the difference is a bug fix along the way that is in the Spark version you are using locally but not in the DBR you are using. But, yeah seems to work as. you say. If you're

Question about ARRAY_INSERT between Spark and Databricks

2023-08-13 Thread Ran Tao
Hi, devs. I found that the ARRAY_INSERT[1] function (from spark 3.4.0) has different semantics with databricks[2]. e.g. // spark SELECT array_insert(array('a', 'b', 'c'), -1, 'z'); ["a","b","z","c"] // databricks SELECT array_insert(array('a', 'b', 'c'), -1, 'z'); ["a","b","c","z"] //