spark-daria icon indicating copy to clipboard operation
spark-daria copied to clipboard

Essential Spark extensions and helper methods ✨😲

Results 26 spark-daria issues
Sort by recently updated
recently updated
newest added

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

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...