From 084674f68f52216a48e5c70a202666d3c2de1af4 Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:54:19 -0400 Subject: [PATCH] Remove a macro that is entirely a docstring (#1185) * remove a macro that only contains a docstring --- .../snowflake/macros/materializations/table.sql | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/dbt/include/snowflake/macros/materializations/table.sql b/dbt/include/snowflake/macros/materializations/table.sql index cbc6d9ce6..9ee8a0b12 100644 --- a/dbt/include/snowflake/macros/materializations/table.sql +++ b/dbt/include/snowflake/macros/materializations/table.sql @@ -72,17 +72,3 @@ def main(session): materialize(session, df, dbt.this) return "OK" {% endmacro %} - -{% macro py_script_comment()%} -# To run this in snowsight, you need to select entry point to be main -# And you may have to modify the return type to text to get the result back -# def main(session): -# dbt = dbtObj(session.table) -# df = model(dbt, session) -# return df.collect() - -# to run this in local notebook, you need to create a session following examples https://github.com/Snowflake-Labs/sfguide-getting-started-snowpark-python -# then you can do the following to run model -# dbt = dbtObj(session.table) -# df = model(dbt, session) -{%endmacro%}