Skip to content

v2.2.3

Compare
Choose a tag to compare
@wbh1 wbh1 released this 12 Nov 15:42
· 17 commits to master since this release
fix: better handling of hex data

Sqlite .dump will output large TEXT values as hex-encoded. This happens a lot with dashboards' JSON data.

Unfortunately, I don't have a great way to distinguish between data that should be
hex-encoded (e.g. things coming from a BLOB column) vs things that
need to be decoded before they're inserted.

So, I do the gross thing and just try it the other way if it failed the first way.