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
thrownewArgumentException($"Parameter '{DatabricksParameters.UseCloudFetch}' value '{useCloudFetchStr}' could not be parsed. Valid values are 'true' and 'false'.");
thrownewArgumentException($"Parameter '{DatabricksParameters.CanDecompressLz4}' value '{canDecompressLz4Str}' could not be parsed. Valid values are 'true' and 'false'.");
thrownewArgumentException($"Parameter '{DatabricksParameters.MaxBytesPerFile}' value '{maxBytesPerFileStr}' could not be parsed. Valid values are positive integers.");
76
+
}
77
+
78
+
if(maxBytesPerFileValue<=0)
79
+
{
80
+
thrownewArgumentOutOfRangeException(
81
+
nameof(Properties),
82
+
maxBytesPerFileValue,
83
+
$"Parameter '{DatabricksParameters.MaxBytesPerFile}' value must be a positive integer.");
0 commit comments