We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a92c62 commit 1cf3fd3Copy full SHA for 1cf3fd3
yql/essentials/public/fastcheck/translator.cpp
@@ -61,6 +61,17 @@ class TTranslatorRunner : public ICheckRunner {
61
settings.Antlr4Parser = true;
62
settings.AnsiLexer = request.IsAnsiLexer;
63
settings.SyntaxVersion = request.SyntaxVersion;
64
+ settings.Flags.insert({
65
+ "AnsiOrderByLimitInUnionAll",
66
+ "DisableCoalesceJoinKeysOnQualifiedAll",
67
+ "AnsiRankForNullableKeys",
68
+ "DisableUnorderedSubqueries",
69
+ "DisableAnsiOptionalAs",
70
+ "FlexibleTypes",
71
+ "CompactNamedExprs",
72
+ "DistinctOverWindow"
73
+ });
74
+
75
switch (request.Mode) {
76
case EMode::Default:
77
settings.AlwaysAllowExports = true;
0 commit comments