Skip to content

Commit 1ec7ebe

Browse files
author
Apoorv Malhotra
committed
Made the data type for BOOL compatible with the data pipeline format
1 parent be25a20 commit 1ec7ebe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/dynamo-backup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,9 @@ DynamoBackup.prototype._getDataPipelineAttributeValueKey = function (type) {
234234
case 'M':
235235
case 'L':
236236
case 'NULL':
237-
case 'BOOL':
238237
return type.toLowerCase();
238+
case 'BOOL':
239+
return 'bOOL';
239240
case 'SS':
240241
return 'sS';
241242
case 'NS':

0 commit comments

Comments
 (0)