Open
Description
In sqlgen.go we assign Estuary data types, to CrateDB data types.
sql.STRING_INTEGER is typically used for very large integers, it should be changed to NUMERIC(30)
, choosing 30
arbitrarily, since picking the largest possible feels like a memory waste when it most likely won't be seen. If needed we can change it in the future if someone faces it as an issue.