Hi all,
In my notebook, when I run my cell with following code
%sql
select date_format(date '1970-01-01', "LLL");
I get '1', while I expect 'Jan' according to the doc
https://spark.apache.org/docs/latest/sql-ref-datetime-pattern.html
I would also expect the following to return 'January', but I get '1' instead
%sql
select to_csv(named_struct('date', date '1970-01-01'), map('dateFormat', 'LLLL', 'locale', 'EN'));
What am I missing?
Thanks in advance for your insights