16 lines
350 B
C#
16 lines
350 B
C#
using Microsoft.SqlServer.TransactSql.ScriptDom;
|
|
using SQLLinter.Common;
|
|
|
|
namespace SQLLinter.Infrastructure.Rules;
|
|
|
|
public class PrintStatementRule : BaseRuleVisitor, IRule
|
|
{
|
|
|
|
public override string Text => "Оператор PRINT найден.";
|
|
|
|
public override void Visit(PrintStatement node)
|
|
{
|
|
AddViolation(node);
|
|
}
|
|
}
|