diff --git a/src/Knet.Kudu.Client/Knet.Kudu.Client.csproj b/src/Knet.Kudu.Client/Knet.Kudu.Client.csproj index cc8206eb..449e3684 100644 --- a/src/Knet.Kudu.Client/Knet.Kudu.Client.csproj +++ b/src/Knet.Kudu.Client/Knet.Kudu.Client.csproj @@ -8,7 +8,7 @@ CS1591;SYSLIB1015 $(AssemblyName) - 0.1.0-preview.5 + 0.1.0 xqrzd true .NET client for Apache Kudu @@ -31,7 +31,7 @@ - + diff --git a/src/Knet.Kudu.Client/Scanner/PartitionPruner.cs b/src/Knet.Kudu.Client/Scanner/PartitionPruner.cs index 70a71365..e0a2a2b9 100644 --- a/src/Knet.Kudu.Client/Scanner/PartitionPruner.cs +++ b/src/Knet.Kudu.Client/Scanner/PartitionPruner.cs @@ -231,9 +231,6 @@ public static PartitionPruner Create( ReadOnlySpan lower = range.Lower.WrittenSpan; ReadOnlySpan 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)) diff --git a/src/Knet.Kudu.Client/TableBuilder.cs b/src/Knet.Kudu.Client/TableBuilder.cs index 3fb63e84..6a515a55 100644 --- a/src/Knet.Kudu.Client/TableBuilder.cs +++ b/src/Knet.Kudu.Client/TableBuilder.cs @@ -329,7 +329,7 @@ public TableBuilder AddRangePartition( /// /// /// - /// 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. /// ///