You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cat ~/tmp/q3.sql
select *
from CATALOG_SALES CS
JOIN CUSTOMER C ON (CS.CS_BILL_CUSTOMER_SK = C.C_CUSTOMER_SK)
/* This is comment */
;
-- qtag:references {"table:DIMENSION":true}
cat ~/tmp/q4.sql
select *
from CATALOG_SALES CS
JOIN CUSTOMER C ON (CS.CS_BILL_CUSTOMER_SK = C.C_CUSTOMER_SK)
-- This is comment
;
-- qtag:references {"table:DIMENSION":true}
cat ~/tmp/q4.sql |qtag
null
Add --all will get qtag, but the line comment mess up with the source name.
Using c style comment, qtag works fine.
Using line comment, qtag is not recognized:
Add --all will get qtag, but the line comment mess up with the source name.
The text was updated successfully, but these errors were encountered: