We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4901d commit 1258a3bCopy full SHA for 1258a3b
TestVectors/dafny/DDBEncryption/src/TestVectors.dfy
@@ -855,6 +855,9 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
855
var resultForInsertStatement := wClient.ExecuteStatement(inputForInsertStatement);
856
expect resultForInsertStatement.Failure?;
857
expect resultForInsertStatement.error.OpaqueWithText?;
858
+ print("error message:");
859
+ print(resultForInsertStatement.error.objMessage);
860
+ print("\n");
861
expect resultForInsertStatement.error.objMessage == "ExecuteStatement not Supported on encrypted tables.";
862
863
// Create a PartiQL SELECT statement
0 commit comments