16 lines
469 B
C#
16 lines
469 B
C#
using Microsoft.SqlServer.TransactSql.ScriptDom;
|
||
using SQLLinter.Common;
|
||
|
||
namespace SQLLinter.Infrastructure.Rules;
|
||
|
||
public class FullTextRule : BaseRuleVisitor, IRule
|
||
{
|
||
|
||
public override string Text => "Обнаружен полнотекстовый предикат, это может вызвать проблемы с производительностью.";
|
||
|
||
public override void Visit(FullTextPredicate node)
|
||
{
|
||
AddViolation(node);
|
||
}
|
||
}
|