17 lines
490 B
C#
17 lines
490 B
C#
using Microsoft.SqlServer.TransactSql.ScriptDom;
|
|
using SQLLinter.Common;
|
|
|
|
namespace SQLLinter.Infrastructure.Rules;
|
|
|
|
public class InsertStarRule : BaseRuleVisitor
|
|
{
|
|
public override string Text => "Запрещено INSERT без столбцов.";
|
|
|
|
public override void Visit(InsertStatement node)
|
|
{
|
|
if (node.InsertSpecification.Columns.Count == 0) // INSERT без перечисления колонок
|
|
{
|
|
AddViolation(node);
|
|
}
|
|
}
|
|
} |