Исправлена проверка с глубиной подзапросов
All checks were successful
CI / build-test (push) Successful in 38s
Release / pack-and-publish (release) Successful in 40s

This commit is contained in:
2025-12-08 17:35:33 +03:00
parent 6a84c90993
commit 9abf8daf90
2 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ namespace SQLLinter.Infrastructure.Rules;
public class NestedSubqueryDepthRule : BaseRuleVisitor
{
public override string Text => "Слишком глубокие подзапросы (>" + _maxDepth + "} уровней): {0}";
public override string Text => "Слишком глубокие подзапросы (>" + _maxDepth + " уровней): {0}";
private int _depth = 0;
private const int _maxDepth = 3;