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



internal/recipe/provision.py [353:368]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    spark.sql(
        f"""
        INSERT INTO default.test_table_snapshot_operations
        VALUES (2)
        """
    )

    spark.sql(
        f"""
        DELETE FROM default.test_table_snapshot_operations
        WHERE number = 2
        """
    )

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



