What is the maximum length of a comment in PostgreSQL?
8
votes
1
answer
2904
views
PostgreSQL has a special piece of a functionality called [
COMMENT
](https://www.postgresql.org/docs/current/sql-comment.html) which attaches metadata to an identifier or any type (schema, table, column, function, type, domain, etc). It looks like this,
COMMENT ON TABLE mytable IS 'This is my table.';
Is there a maximum size for the comment?
Asked by Evan Carroll
(65532 rep)
Feb 26, 2019, 05:43 AM
Last activity: Feb 26, 2019, 08:17 AM
Last activity: Feb 26, 2019, 08:17 AM