(plugins: SqlCommenterPlugin[], context: SqlCommenterContext)
| 61 | * Applies SQL commenter plugins and returns the formatted comment. |
| 62 | */ |
| 63 | export function buildSqlComment(plugins: SqlCommenterPlugin[], context: SqlCommenterContext): string { |
| 64 | const tags = applySqlCommenters(plugins, context) |
| 65 | return formatSqlComment(tags) |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Appends a sqlcommenter comment to a SQL query. |
no test coverage detected