spark-daria
spark-daria copied to clipboard
Essential Spark extensions and helper methods ✨😲
Should work like `printAthenaCreateTable`. Should be something like `printCreateTable`. We can add an option like `catalog_type: "hms" | "unity" | "iceberg"` to support various catalog CREATE TABLE syntaxes.
Sbt version is too old to work with specially from updated IDE's
Fix #172
Making AssertNotNull Expression available as spark sql functions. This this particular helpful when spark is unable to know that a column not nullable when working with Schema on write format...
Description: Currently, updating the nullability metadata of a DataFrame schema in Spark is most commonly done via: ```scala spark.createDataFrame(df.rdd, newSchema) ``` This approach is inefficient and low-level, especially when working...