Skip to content

Commit

Permalink
Fixed whitspace issue by escaping chars
Browse files Browse the repository at this point in the history
  • Loading branch information
nghi-ly committed Nov 29, 2023
1 parent 01aea7a commit 6c8e886
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions website/docs/guides/microsoft-fabric-qs.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ A public preview of Microsoft Fabric in dbt Cloud is now available!
CREATE TABLE dbo.customers
(
[ID] [int],
[FIRST_NAME] [varchar] (8000),
[LAST_NAME] [varchar] (8000)
\[FIRST_NAME] [varchar](8000),
\[LAST_NAME] [varchar](8000)
);

COPY INTO [dbo].[customers]
Expand All @@ -72,7 +72,7 @@ A public preview of Microsoft Fabric in dbt Cloud is now available!
[USER_ID] [int],
-- [ORDER_DATE] [int],
[ORDER_DATE] [date],
[STATUS] [varchar] (8000)
\[STATUS] [varchar](8000)
);

COPY INTO [dbo].[orders]
Expand All @@ -87,8 +87,8 @@ A public preview of Microsoft Fabric in dbt Cloud is now available!
(
[ID] [int],
[ORDERID] [int],
[PAYMENTMETHOD] [varchar] (8000),
[STATUS] [varchar] (8000),
\[PAYMENTMETHOD] [varchar](8000),
\[STATUS] [varchar](8000),
[AMOUNT] [int],
[CREATED] [date]
);
Expand Down

0 comments on commit 6c8e886

Please sign in to comment.