AbsaOSS / AbsaOSS/spark-data-standardization

Add support for capitalized month names when casting dates

オープン
#83 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
enhancement
主要言語
Scala
スター
7
フォーク
2
平均マージ
1日 18時間
マージ済み PR(30日)
4

説明

## Background
Currently, the pattern `ddMMMyyyy` doesn't work for dates like `11JAN2026`, only `11Sep2012`.

In Java this is fixed by making the formatter case-insensitive:
```scala
val formatter = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.appendPattern("ddMMMyyyy")
.toFormatter(Locale.ENGLISH);
```

However, Spark does not do that and patterns are case sensitive.

## Feature
Add support for capitalized month names when casting dates.

## Business Value
--

## Example [Optional]
--

## Proposed Solution [Optional]
--

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。