You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
opts.AddLongOption("float-mode", "Float mode. Can be float, decimal or decimal_ydb. If set to 'float' - float will be used, 'decimal' means that decimal will be used with canonical size and 'decimal_ydb' means that all floats will be converted to decimal(22,9) because YDB supports only this type.")
166
166
.StoreResult(&FloatMode).DefaultValue(FloatMode);
167
+
opts.AddLongOption('c', "check-canonical", "Use deterministic queries and check results with canonical ones.")
168
+
.NoArgument().StoreTrue(&CheckCanonical);
167
169
break;
168
170
case TWorkloadParams::ECommandType::Init:
169
171
opts.AddLongOption("float-mode", "Float mode. Can be float, decimal or decimal_ydb. If set to 'float' - float will be used, 'decimal' means that decimal will be used with canonical size and 'decimal_ydb' means that all floats will be converted to decimal(22,9) because YDB supports only this type.")
0 commit comments