File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11import os
22
3- from sqlmesh .core .config .common import VirtualEnvironmentMode
3+ from sqlmesh .core .config .common import VirtualEnvironmentMode , TableNamingConvention
44from sqlmesh .core .config import (
55 AutoCategorizationMode ,
66 BigQueryConnectionConfig ,
193193 before_all = before_all ,
194194)
195195
196- hash_md5_naming_config = config .copy (update = {"physical_table_naming_convention" : "hash_md5" })
196+ hash_md5_naming_config = config .copy (
197+ update = {"physical_table_naming_convention" : TableNamingConvention .HASH_MD5 }
198+ )
197199
198- table_only_naming_config = config .copy (update = {"physical_table_naming_convention" : "table_only" })
200+ table_only_naming_config = config .copy (
201+ update = {"physical_table_naming_convention" : TableNamingConvention .TABLE_ONLY }
202+ )
You can’t perform that action at this time.
0 commit comments