@@ -811,7 +811,7 @@ def _build_schema_exp(
811811 column_descriptions : t .Optional [t .Dict [str , str ]] = None ,
812812 expressions : t .Optional [t .List [exp .PrimaryKey ]] = None ,
813813 is_view : bool = False ,
814- is_materialized_view : bool = False ,
814+ materialized : bool = False ,
815815 ) -> exp .Schema :
816816 """
817817 Build a schema expression for a table, columns, column comments, and additional schema properties.
@@ -824,7 +824,7 @@ def _build_schema_exp(
824824 target_columns_to_types = target_columns_to_types ,
825825 column_descriptions = column_descriptions ,
826826 is_view = is_view ,
827- is_materialized_view = is_materialized_view ,
827+ materialized = materialized ,
828828 )
829829 + expressions ,
830830 )
@@ -834,7 +834,7 @@ def _build_column_defs(
834834 target_columns_to_types : t .Dict [str , exp .DataType ],
835835 column_descriptions : t .Optional [t .Dict [str , str ]] = None ,
836836 is_view : bool = False ,
837- is_materialized_view : bool = False ,
837+ materialized : bool = False ,
838838 ) -> t .List [exp .ColumnDef ]:
839839 engine_supports_schema_comments = (
840840 self .COMMENT_CREATION_VIEW .supports_schema_def
@@ -1267,7 +1267,7 @@ def create_view(
12671267 target_columns_to_types ,
12681268 column_descriptions ,
12691269 is_view = True ,
1270- is_materialized_view = materialized ,
1270+ materialized = materialized ,
12711271 )
12721272
12731273 properties = create_kwargs .pop ("properties" , None )
0 commit comments