File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
TestVectors/dafny/DDBEncryption/src Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -854,6 +854,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
854
854
);
855
855
var resultForInsertStatement := wClient. ExecuteStatement (inputForInsertStatement);
856
856
expect resultForInsertStatement. Failure?;
857
+ expect resultForInsertStatement. error. OpaqueWithText?;
857
858
expect resultForInsertStatement. error. objMessage == "ExecuteStatement not Supported on encrypted tables. ";
858
859
859
860
// Create a PartiQL SELECT statement
@@ -869,6 +870,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
869
870
);
870
871
var resultForSelectStatement := rClient. ExecuteStatement (inputForSelectStatement);
871
872
expect resultForSelectStatement. Failure?;
873
+ expect resultForSelectStatement. error. OpaqueWithText?;
872
874
expect resultForSelectStatement. error. objMessage == "ExecuteStatement not Supported on encrypted tables. ";
873
875
}
874
876
You can’t perform that action at this time.
0 commit comments