Uh oh!
There was an error while loading. Please reload this page.
Add support for Query Hints for MS Fabric in TSql170Parser (#180) - #212
Add support for Query Hints for MS Fabric in TSql170Parser (#180)#212NAVEEN NAIK (ZEUSXXIV) wants to merge 2 commits into
Conversation
Leila Lali (llali)
commented
Jul 16, 2026
M1 — Positive-only test coverage; no negative / version-gating assertions. |
Leila Lali (llali)
left a comment
There was a problem hiding this comment.
please add negative tests. everything else look good
253b7c8 to
b845162CompareNAVEEN NAIK (ZEUSXXIV)
commented
Jul 20, 2026
Leila Lali (@llali) Ah yes! I missed out on adding the negative test cases, I have updated the PR accordingly. |
Description
Fixes#180.
Adds support for MS Fabric query hints (
FOR TIMESTAMP AS OF '<literal>',FORCE SINGLE NODE PLAN, andFORCE DISTRIBUTED PLAN) inTSql170Parser,TSql180Parser, andTSqlFabricDWParser. These hints are mapped to AST enums (ForceSingleNodePlan,ForceDistributedPlan,ForTimestampAsOf) and handled appropriately in the T-SQL parser grammar and script generator visitor. Includes new regression unit test coverage.Code Changes