Fix for deleting text columns (#928)

* Added handling for deleting problematic rows

* minor formatting changes

* Null checks and executereader implemented

* minor formatting

* Fix for column deletion for text

* minor space format

* more format changes

* Removal of top 200 and change of text comparison

* space fix

* minor commit

* Added new tests for single clause

* simplified regex

* spacing fix

* some polish for RowEditBaseTests

* space fix

* loc update (#914)

* loc update

* loc updates

* Warning for multiple delete (#931)

* Fix for multiple delete bug

* minor space removal

* removed catch error in RowDelete

* small optimizations

* space adding

* WIP on creating test

* Some cleanup

* removed spaces

* Fix for verifytext

* Added check for command format correctness.

* tidying up

* added working test for command exception

* simplification of TestDbDataReader getint

* Corrections made

* spacing and naming issues

* minor space

* one more space issue

* Revert "Support ActiveDirectoryPassword authentication (#899)" (#915)

This reverts commit b786a14c03.

* revert changes to connectionService

* fix for asserts

* fix clauses

Co-authored-by: khoiph1 <khoiph@microsoft.com>
Co-authored-by: Amir Omidi <amir@aaomidi.com>
This commit is contained in:
Alex Ma
2021-07-16 14:11:32 -07:00
committed by GitHub
parent 0032cc684b
commit c731744298
2 changed files with 79 additions and 29 deletions

View File

@@ -181,23 +181,29 @@ namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
} }
else else
{ {
if (cellData.RawObject is byte[] ||
col.DbColumn.DataTypeName.Equals("TEXT", StringComparison.OrdinalIgnoreCase) ||
col.DbColumn.DataTypeName.Equals("NTEXT", StringComparison.OrdinalIgnoreCase))
{
// Special cases for byte[] and TEXT/NTEXT types
cellDataClause = "IS NOT NULL";
}
else
{
// General case is to just use the value from the cell
if (parameterize) if (parameterize)
{ {
// Add a parameter and parameterized clause component // Add a parameter and parameterized clause component
// NOTE: We include the row ID to make sure the parameter is unique if // NOTE: We include the row ID to make sure the parameter is unique if
// we execute multiple row edits at once. // we execute multiple row edits at once.
string paramName = $"@Param{RowId}{col.Ordinal}"; string paramName = $"@Param{RowId}{col.Ordinal}";
if (cellData.RawObject is byte[])
{
cellDataClause = $"= CONVERT (VARBINARY(MAX), {paramName})";
}
else if (col.DbColumn.DataTypeName.Equals("TEXT", StringComparison.OrdinalIgnoreCase) || (col.DbColumn.DataTypeName.Equals("TEXT", StringComparison.OrdinalIgnoreCase) ||
col.DbColumn.DataTypeName.Equals("NTEXT", StringComparison.OrdinalIgnoreCase)))
{
// Special case for TEXT/NTEXT types.
//NOTE: the types are not compatible with n/varchar so direct comparison
// will not work for these types, must convert first.
cellDataClause = $"= CONVERT (NVARCHAR(MAX), {paramName})";
}
else
{
cellDataClause = $"= {paramName}"; cellDataClause = $"= {paramName}";
}
SqlParameter parameter = new SqlParameter(paramName, col.DbColumn.SqlDbType) SqlParameter parameter = new SqlParameter(paramName, col.DbColumn.SqlDbType)
{ {
Value = cellData.RawObject Value = cellData.RawObject
@@ -210,9 +216,25 @@ namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
cellDataClause = $"= {ToSqlScript.FormatValue(cellData, col.DbColumn)}"; cellDataClause = $"= {ToSqlScript.FormatValue(cellData, col.DbColumn)}";
} }
} }
string completeComponent;
if (cellData.RawObject is byte[])
{
completeComponent = $"(CONVERT (VARBINARY(MAX), {col.EscapedName}) {cellDataClause})";
}
else if (col.DbColumn.DataTypeName.Equals("TEXT", StringComparison.OrdinalIgnoreCase) ||
col.DbColumn.DataTypeName.Equals("NTEXT", StringComparison.OrdinalIgnoreCase))
{
// Special case for TEXT/NTEXT types as explained on line 197.
completeComponent = $"(CONVERT (NVARCHAR(MAX), {col.EscapedName}) {cellDataClause})";
}
else
{
completeComponent = $"({col.EscapedName} {cellDataClause})";
} }
string completeComponent = $"({col.EscapedName} {cellDataClause})";
output.ClauseComponents.Add(completeComponent); output.ClauseComponents.Add(completeComponent);
} }

View File

@@ -80,8 +80,15 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.EditData
EditTableMetadata etm = Common.GetCustomEditTableMetadata(cols); EditTableMetadata etm = Common.GetCustomEditTableMetadata(cols);
RowEditTester rt = new RowEditTester(rs, etm); RowEditTester rt = new RowEditTester(rs, etm);
if (val == DBNull.Value)
{
rt.ValidateWhereClauseNullKey(nullClause);
}
else
{
rt.ValidateWhereClauseSingleKey(nullClause); rt.ValidateWhereClauseSingleKey(nullClause);
} }
}
public static IEnumerable<object[]> GetWhereClauseIsNotNullData public static IEnumerable<object[]> GetWhereClauseIsNotNullData
{ {
@@ -95,7 +102,7 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.EditData
DataType = typeof(byte[]) DataType = typeof(byte[])
}, },
new byte[5], new byte[5],
"IS NOT NULL" "= 0x0000000000"
}; };
yield return new object[] yield return new object[]
{ {
@@ -105,7 +112,7 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.EditData
DataTypeName = "TEXT" DataTypeName = "TEXT"
}, },
"abc", "abc",
"IS NOT NULL" "= N'abc'"
}; };
yield return new object[] yield return new object[]
{ {
@@ -116,7 +123,7 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.EditData
}, },
"abc", "abc",
"IS NOT NULL" "= N'abc'"
}; };
} }
} }
@@ -252,7 +259,7 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.EditData
} }
// ReSharper disable once UnusedParameter.Local // ReSharper disable once UnusedParameter.Local
public void ValidateWhereClauseSingleKey(string nullValue) public void ValidateWhereClauseNullKey(string nullValue)
{ {
// If: I generate a where clause with one is null column value // If: I generate a where clause with one is null column value
WhereClause wc = GetWhereClause(false); WhereClause wc = GetWhereClause(false);
@@ -272,6 +279,27 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.EditData
Assert.AreEqual($"WHERE {wc.ClauseComponents[0]}", wc.CommandText); Assert.AreEqual($"WHERE {wc.ClauseComponents[0]}", wc.CommandText);
} }
public void ValidateWhereClauseSingleKey(string clauseValue)
{
// If: I generate a where clause with one is null column value
WhereClause wc = GetWhereClause(false);
// Then:
// ... There should only be one component
Assert.AreEqual(1, wc.ClauseComponents.Count);
// ... Parameterization should be empty
Assert.IsEmpty(wc.Parameters);
// ... The component should contain the name of the column and the value
Assert.True(wc.ClauseComponents[0].Contains(AssociatedObjectMetadata.Columns.First().EscapedName));
Regex r = new Regex($@"\(CONVERT \([A-Z]*\(MAX\), {AssociatedObjectMetadata.Columns.First().EscapedName}\) {clauseValue}\)");
Assert.True(r.IsMatch(wc.ClauseComponents[0]));
// ... The complete clause should contain a single WHERE
Assert.AreEqual($"WHERE {wc.ClauseComponents[0]}", wc.CommandText);
}
public void ValidateWhereClauseMultipleKeys() public void ValidateWhereClauseMultipleKeys()
{ {
// If: I generate a where clause with multiple key columns // If: I generate a where clause with multiple key columns