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%}