Fix build break in row count merge

This commit is contained in:
Karl Burtram
2016-09-20 21:10:22 -07:00
parent 7226240b80
commit 7d6aabb618

View File

@@ -345,7 +345,7 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.ConnectionParamsValidateNullSqlAuth, component); return Keys.GetString(Keys.ConnectionParamsValidateNullSqlAuth, component);
} }
public static string QueryServiceAffectedRows(int rows) public static string QueryServiceAffectedRows(long rows)
{ {
return Keys.GetString(Keys.QueryServiceAffectedRows, rows); return Keys.GetString(Keys.QueryServiceAffectedRows, rows);
} }