edasque / DynamoDBtoCSV

Dump DynamoDB data into a CSV file
Apache License 2.0
471 stars 152 forks source link

boolean fields support #15

Closed ricardclau closed 9 years ago

ricardclau commented 9 years ago

This is arguably a bit quirky but I am not sure about how to better support it.

Dynamo stores boolean fields under the "BOOL" key and to make things better elements are only returned when the boolean field is set to true and the actual value is not in a string format (this is why the toString call). Not sure about what would be the proper representation of a boolean field in a CSV file either.

Happy to further discuss better ways of exporting these fields!

edasque commented 9 years ago

I think this is a perfectly valid approach