Skip to content

Commit

Permalink
Publish 0.1.0 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
xqrzd authored Mar 12, 2022
1 parent 0d62639 commit 453ae2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Knet.Kudu.Client/Knet.Kudu.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<NoWarn>CS1591;SYSLIB1015</NoWarn>

<PackageId>$(AssemblyName)</PackageId>
<Version>0.1.0-preview.5</Version>
<Version>0.1.0</Version>
<Authors>xqrzd</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>.NET client for Apache Kudu</Description>
Expand All @@ -31,7 +31,7 @@

<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.19.4" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Pipelines.Sockets.Unofficial" Version="2.2.2" />
<PackageReference Include="System.IO.Pipelines" Version="6.0.2" />
Expand Down
3 changes: 0 additions & 3 deletions src/Knet.Kudu.Client/Scanner/PartitionPruner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,6 @@ public static PartitionPruner Create(
ReadOnlySpan<byte> lower = range.Lower.WrittenSpan;
ReadOnlySpan<byte> upper = range.Upper.WrittenSpan;

// Sanity check that the lower bound is less than the upper bound.
//assert upper.length == 0 || Bytes.memcmp(lower, upper) < 0;

// Find the intersection of the ranges.
if (lowerBoundPartitionKey.Length > 0 &&
(lower.Length == 0 || lower.SequenceCompareTo(lowerBoundPartitionKey) < 0))
Expand Down
2 changes: 1 addition & 1 deletion src/Knet.Kudu.Client/TableBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public TableBuilder AddRangePartition(
/// </para>
///
/// <para>
/// If arange column is missing a value, the logical minimum value for that
/// If a range column is missing a value, the logical minimum value for that
/// column type will be used as the default.
/// </para>
///
Expand Down

0 comments on commit 453ae2f

Please sign in to comment.