From f6115b0e8228c425f99aa0c57b9e72a78e1399f3 Mon Sep 17 00:00:00 2001 From: Anand Shah Date: Tue, 3 Sep 2024 21:27:06 +0200 Subject: [PATCH] Fix syntax error in delete record --- examples/notebooks/native_iceberg_sql.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/notebooks/native_iceberg_sql.ipynb b/examples/notebooks/native_iceberg_sql.ipynb index 6f7a063..aa4b915 100644 --- a/examples/notebooks/native_iceberg_sql.ipynb +++ b/examples/notebooks/native_iceberg_sql.ipynb @@ -267,7 +267,7 @@ "outputs": [], "source": [ "%%sql\n", - "DELETE FROM glue_catalog.iceberg_sql.product WHERE product_name == \"Blender\"" + "DELETE FROM glue_catalog.iceberg_sql.product WHERE product_name = 'Blender'" ] }, {