Skip to content

Commit 1c9fe2a

Browse files
authored
Merge pull request #557 from simonhoerdumbonde/bugfix/incorrect_syntax_error_in_catalog_creation
Fix incorrect syntax near keyword 'as' in catalog creation
2 parents cc5e642 + b8a3eed commit 1c9fe2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbt/include/sqlserver/macros/adapter/catalog.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
c.column_id as column_index,
9797
t.name as column_type
9898
from sys.columns as c {{ information_schema_hints() }}
99-
left join sys.types {{ information_schema_hints() }} as t on c.system_type_id = t.system_type_id
99+
left join sys.types as t {{ information_schema_hints() }} on c.system_type_id = t.system_type_id
100100
)
101101

102102
select

0 commit comments

Comments
 (0)