What's the best data type to use for a column in a redshift table that will hold a very long string (can be up to 50KB)?
TEXT is replaced by varchar(256)
by default. For now I used varchar(65535)
, but I'm not sure if that's the right way to do that...
Thanks