forked from woltsu/tsynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for ReturnValuesOnConditionCheckFailure
- Loading branch information
1 parent
46b406b
commit 91dbda2
Showing
5 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import { ExpressionNode } from "./expressionNode"; | ||
import { KeysNode } from "./keysNode"; | ||
import { ReturnValuesNode } from "./returnValuesNode"; | ||
import { ReturnOldValuesNode, ReturnValuesNode } from "./returnValuesNode"; | ||
import { TableNode } from "./tableNode"; | ||
|
||
export type DeleteNode = { | ||
readonly kind: "DeleteNode"; | ||
readonly table: TableNode; | ||
readonly conditionExpression: ExpressionNode; | ||
readonly returnValues?: ReturnValuesNode; | ||
readonly returnValuesOnConditionCheckFailure?: ReturnOldValuesNode; | ||
readonly keys?: KeysNode; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters