Skip to content

Commit 66de22e

Browse files
author
Ivan Matantsev
committed
Push Parquet files to Parquet project
1 parent 88500f4 commit 66de22e

File tree

5 files changed

+3
-2
lines changed

5 files changed

+3
-2
lines changed

src/Microsoft.ML.Data/Commands/DataCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ internal static class LoaderUtils
403403
/// <summary>
404404
/// Saves <paramref name="loader"/> to the specified <paramref name="file"/>.
405405
/// </summary>
406-
internal static void SaveLoader(IDataLoader loader, IFileHandle file)
406+
public static void SaveLoader(IDataLoader loader, IFileHandle file)
407407
{
408408
Contracts.CheckValue(loader, nameof(loader));
409409
Contracts.CheckValue(file, nameof(file));
@@ -418,7 +418,7 @@ internal static void SaveLoader(IDataLoader loader, IFileHandle file)
418418
/// <summary>
419419
/// Saves <paramref name="loader"/> to the specified <paramref name="stream"/>.
420420
/// </summary>
421-
internal static void SaveLoader(IDataLoader loader, Stream stream)
421+
public static void SaveLoader(IDataLoader loader, Stream stream)
422422
{
423423
Contracts.CheckValue(loader, nameof(loader));
424424
Contracts.CheckValue(stream, nameof(stream));

src/Microsoft.ML.Data/DataView/ZipBinding.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ namespace Microsoft.ML.Data
1212
/// A convenience class for concatenating several schemas together.
1313
/// This would be necessary when combining IDataViews through any type of combining operation, for example, zip.
1414
/// </summary>
15+
[BestFriend]
1516
internal sealed class ZipBinding
1617
{
1718
private readonly Schema[] _sources;

0 commit comments

Comments
 (0)