GSA-TTS / fac-backup-utility

Exploring a tool for backing things up
The Unlicense
3 stars 0 forks source link

Changes row count from str to int #10

Closed jadudm closed 2 months ago

jadudm commented 2 months ago

The JSON structure was storing row counts as strings; this converts it to ints.

In other words, it converts the record structure from [string, string] to [string, integer], so that we can compute over the row counts later if we need to.

Note that if the Atoi fails, we will store -1 as the row count.