format code

This commit is contained in:
Nim Wijetunga 2022-08-09 10:04:30 -07:00
parent 09a106c847
commit 25880d5907
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
typedef enum { TLOG_ENCRYPTION = 0, STORAGE_SERVER_ENCRYPTION = 1, BLOB_GRANULE_ENCRYPTION = 2 } EncryptOperationType;
inline bool isEncryptionOpSupported(EncryptOperationType operation_type, ClientDBInfo dbInfo) {
if (!dbInfo.isEncryptionEnabled) {
if (!dbInfo.isEncryptionEnabled) {
return false;
}