(no title)
asjo | 2 years ago
> the longest possible character string that can be stored is about 1 GB.
ยท https://www.postgresql.org/docs/current/datatype-character.h...
See also: https://www.postgresql.org/docs/current/limits.html
Where do you have the 64KB number from?
A small test:
test=# create table test_table (test_field text);
CREATE TABLE
test=# insert into test_table select string_agg('x', '') from generate_series(1, 128*1024);
INSERT 0 1
test=# select length(test_field) from test_table;
length
--------
131072
(1 row)
hot_gril|2 years ago
In MySQL, the TEXT (and BLOB) limit is 65KB, but you can get 4GB using LONGTEXT. According to their docs: https://dev.mysql.com/doc/refman/8.0/en/string-type-syntax.h...