Skip to content

Commit 789aa0c

Browse files
committed
m
1 parent 839921a commit 789aa0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/FilterExpr.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,7 @@ module DynamoDBFilterExpr {
18641864
}
18651865
var new_key :- MakeNewName(key, result_values, new_values[key]);
18661866
result_values := result_values[new_key := new_values[key]];
1867-
result_filter := String.SearchAndReplaceAllNot(result_filter, key, new_key, String.AlphaNumericUnder);
1867+
result_filter := String.SearchAndReplaceAllWhole(result_filter, key, new_key, String.AlphaNumericUnder);
18681868
}
18691869
}
18701870
return Success((result_filter, result_values));

0 commit comments

Comments
 (0)