podyn
podyn copied to clipboard
Added getNULL check on type check and convertNumberToText as a optional command line parameter
Added convertNumberToText or convert-numbers-to-text as a command line parameter that allows numbers to be stored as string in postgress. This is to address an issue where javascript numbers were stored as a string in DynamoDB. Also prevents the creation of an additional columns where they are not needed.
Eg. amount = 0. Will create column "amount" but amount = "0" will create another column "amount_numeric".
When starting podyn with convert-numbers-to-text all numeric fields will be treated as strings.
I also created docker image that will account for this new command line args