mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-04 17:24:56 -05:00
edit/revertCell (#268)
// edit/dispose -------------------------------------------------------------------------------
export interface EditDisposeParams extends IEditSessionOperationParams { }
export interface EditDisposeResult { }
* Initial plumbing for edit/revertCell
* Implementation of revert cell in the parents of the row edit base
* Adding unit tests
This commit is contained in:
@@ -421,6 +421,14 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string EditDataColumnUpdateNotPending
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.EditDataColumnUpdateNotPending);
|
||||
}
|
||||
}
|
||||
|
||||
public static string EditDataObjectMetadataNotFound
|
||||
{
|
||||
get
|
||||
@@ -1032,6 +1040,9 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string EditDataUpdateNotPending = "EditDataUpdateNotPending";
|
||||
|
||||
|
||||
public const string EditDataColumnUpdateNotPending = "EditDataColumnUpdateNotPending";
|
||||
|
||||
|
||||
public const string EditDataObjectMetadataNotFound = "EditDataObjectMetadataNotFound";
|
||||
|
||||
|
||||
|
||||
@@ -380,7 +380,11 @@
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="EditDataUpdateNotPending" xml:space="preserve">
|
||||
<value>Given row ID does not have pending updated</value>
|
||||
<value>Given row ID does not have pending update</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="EditDataColumnUpdateNotPending" xml:space="preserve">
|
||||
<value>Give column ID does not have pending update</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="EditDataObjectMetadataNotFound" xml:space="preserve">
|
||||
|
||||
@@ -178,7 +178,9 @@ EditDataRowOutOfRange = Given row ID is outside the range of rows in the edit ca
|
||||
|
||||
EditDataUpdatePending = An update is already pending for this row and must be reverted first
|
||||
|
||||
EditDataUpdateNotPending = Given row ID does not have pending updated
|
||||
EditDataUpdateNotPending = Given row ID does not have pending update
|
||||
|
||||
EditDataColumnUpdateNotPending = Give column ID does not have pending update
|
||||
|
||||
EditDataObjectMetadataNotFound = Table or view metadata could not be found
|
||||
|
||||
|
||||
@@ -460,7 +460,7 @@
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EditDataUpdateNotPending">
|
||||
<source>Given row ID does not have pending updated</source>
|
||||
<source>Given row ID does not have pending update</source>
|
||||
<target state="new">Given row ID does not have pending updated</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
@@ -536,6 +536,11 @@
|
||||
<target state="new"><TBD></target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EditDataColumnUpdateNotPending">
|
||||
<source>Give column ID does not have pending update</source>
|
||||
<target state="new">Give column ID does not have pending update</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EditDataInitializeInProgress">
|
||||
<source>Another edit data initialize is in progress for this owner URI. Please wait for completion.</source>
|
||||
<target state="new">Another edit data initialize is in progress for this owner URI. Please wait for completion.</target>
|
||||
|
||||
Reference in New Issue
Block a user