mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-30 17:24:37 -05:00
Revert query execution changes (#1341)
* Revert "handle sql variable type (#1333)" This reverts commit51c801eb33. * Revert "handle large decimal (#1326)" This reverts commitfd5b8af0c0.
This commit is contained in:
@@ -8631,11 +8631,6 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.QueryServiceQueryFailed, message);
|
||||
}
|
||||
|
||||
public static string QueryServiceUnsupportedSqlVariantType(string underlyingType, string columnName)
|
||||
{
|
||||
return Keys.GetString(Keys.QueryServiceUnsupportedSqlVariantType, underlyingType, columnName);
|
||||
}
|
||||
|
||||
public static string QueryServiceSaveAsFail(string fileName, string message)
|
||||
{
|
||||
return Keys.GetString(Keys.QueryServiceSaveAsFail, fileName, message);
|
||||
@@ -9016,9 +9011,6 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string QueryServiceResultSetTooLarge = "QueryServiceResultSetTooLarge";
|
||||
|
||||
|
||||
public const string QueryServiceUnsupportedSqlVariantType = "QueryServiceUnsupportedSqlVariantType";
|
||||
|
||||
|
||||
public const string QueryServiceSaveAsResultSetNotComplete = "QueryServiceSaveAsResultSetNotComplete";
|
||||
|
||||
|
||||
|
||||
@@ -303,11 +303,6 @@
|
||||
<value>Result set has too many rows to be safely loaded</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="QueryServiceUnsupportedSqlVariantType" xml:space="preserve">
|
||||
<value>The underlying type "{0}" for sql variant column "{1}" could not be resolved.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - underlyingType (string), 1 - columnName (string) </comment>
|
||||
</data>
|
||||
<data name="QueryServiceSaveAsResultSetNotComplete" xml:space="preserve">
|
||||
<value>Result cannot be saved until query execution has completed</value>
|
||||
<comment></comment>
|
||||
|
||||
@@ -124,8 +124,6 @@ QueryServiceResultSetHasNoResults = Query has no results to return
|
||||
|
||||
QueryServiceResultSetTooLarge = Result set has too many rows to be safely loaded
|
||||
|
||||
QueryServiceUnsupportedSqlVariantType(string underlyingType, string columnName) = The underlying type "{0}" for sql variant column "{1}" could not be resolved.
|
||||
|
||||
### Save As Requests
|
||||
|
||||
QueryServiceSaveAsResultSetNotComplete = Result cannot be saved until query execution has completed
|
||||
|
||||
@@ -5696,11 +5696,17 @@
|
||||
<target state="new">Specifies whether the check constraint is Enabled</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="QueryServiceUnsupportedSqlVariantType">
|
||||
<source>The underlying type "{0}" for sql variant column "{1}" could not be resolved.</source>
|
||||
<target state="new">The underlying type "{0}" for sql variant column "{1}" could not be resolved.</target>
|
||||
<trans-unit id="SessionMissingDetails">
|
||||
<source>Unable to start streaming session {0} due to missing session details.</source>
|
||||
<target state="new">Unable to start streaming session {0} due to missing session details.</target>
|
||||
<note>.
|
||||
Parameters: 0 - underlyingType (string), 1 - columnName (string) </note>
|
||||
Parameters: 0 - id (int) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="StartProfilingFailed">
|
||||
<source>Failed to start profiler: {0}</source>
|
||||
<target state="new">Failed to start profiler: {0}</target>
|
||||
<note>.
|
||||
Parameters: 0 - error (String) </note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
|
||||
Reference in New Issue
Block a user