I see that from Is there support for BLOBs in YugabyteDB like in Oracle or Postgres?, it says BLOB
type is not supported. It is from two years ago so I am wondering if it's still true.
From https://github.com/yugabyte/yugabyte-db/issues/3576, I see that the ticket for BLOB support is still open but from https://docs.yugabyte.com/latest/api/ycql/type_blob/, it seems like it's supported?
I should mention that I tried to create a table with a column typed BLOB
but got:
create table small_files(file_id bigint, file_size bigint, file_name text, content blob);
ERROR: type "blob" does not exist
Does it just mean that the cloud version of yugabyte supports it, ie using YCQL but not YSQL? Is using BYTEA
the current alternative for type BLOB
? Thank you.