Skip to content

Commit 1ecf0f5

Browse files
authored
kqprun: result-rows-limit is zero by default (#10657)
1 parent 20fd222 commit 1ecf0f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/tests/tools/kqprun/kqprun.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ class TMain : public TMainClassArgs {
348348
.StoreMappedResultT<TString>(&RunnerOptions.ResultOutput, &GetDefaultOutput);
349349
options.AddLongOption('L', "result-rows-limit", "Rows limit for script execution results")
350350
.RequiredArgument("uint")
351-
.DefaultValue(ResultsRowsLimit)
351+
.DefaultValue(0)
352352
.StoreResult(&ResultsRowsLimit);
353353
TChoices<NKqpRun::TRunnerOptions::EResultOutputFormat> resultFormat({
354354
{"rows", NKqpRun::TRunnerOptions::EResultOutputFormat::RowsJson},

0 commit comments

Comments
 (0)