internal/recipe/provision.py [312:335]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    spark.sql(
        f"""
    CREATE TABLE default.test_table_empty_list_and_map (
        col_list             array<int>,
        col_map              map<int, int>,
        col_list_with_struct array<struct<test:int>>
    )
    USING iceberg
    TBLPROPERTIES (
        'format-version'='1'
    );
    """
    )

    spark.sql(
        f"""
    INSERT INTO default.test_table_empty_list_and_map
    VALUES (null, null, null),
           (array(), map(), array(struct(1)))
    """
    )

    spark.sql(
        f"""
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



internal/recipe/provision.py [334:354]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    spark.sql(
        f"""
        CREATE OR REPLACE TABLE default.test_table_snapshot_operations (
            number integer
        )
        USING iceberg
        TBLPROPERTIES (
            'format-version'='2'
        );
        """
    )

    spark.sql(
        f"""
        INSERT INTO default.test_table_snapshot_operations
        VALUES (1)
        """
    )

    spark.sql(
        f"""
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



