DataDog / datadog-static-analyzer

Datadog Static Analyzer
https://docs.datadoghq.com/static_analysis/
Apache License 2.0
100 stars 12 forks source link

[STAL-2732] feat: add SQL support #495

Closed amaanq closed 1 month ago

amaanq commented 1 month ago

What problem are you trying to solve?

Currently, we do not support SQL files. We need a way to parse and query SQL files, but we do not currently fetch and build an SQL grammar.

What is your solution?

Add the SQL grammar to the analyzer itself, which is fetched from https://github.com/DerekStride/tree-sitter-sql. This will allow us (and customers down the line) to begin writing rules targeting SQL files.

Alternatives considered

What the reviewer should know

The SQL grammar repository does not generate and commit the parser.c file on the main branch, but rather the gh-pages branch, so the commit being used does not exist on the main branch - this is expected