17 lines
452 B
C#
17 lines
452 B
C#
using Microsoft.SqlServer.TransactSql.ScriptDom;
|
|
using SQLLinter.Common;
|
|
|
|
namespace SQLLinter.Infrastructure.Rules;
|
|
|
|
public class RecompileRule : BaseRuleVisitor
|
|
{
|
|
public override string Text => "Нежелательно использовать RECOMPILE.";
|
|
|
|
public override void Visit(OptimizeForOptimizerHint node)
|
|
{
|
|
if (node.HintKind == OptimizerHintKind.Recompile)
|
|
{
|
|
AddViolation(node);
|
|
}
|
|
}
|
|
} |