We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code: https://github.com/tembo-io/pgmq/blob/main/pgmq-extension/sql/pgmq.sql#L593
IF length(queue_name) >= 48 THEN RAISE EXCEPTION 'queue name is too long, maximum length is 48 characters'; END IF;
Length of 48 triggers exception that the max length should be 48.
Either the check should be changed from >= to > or the rror message should say 47.
>=
>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Code: https://github.com/tembo-io/pgmq/blob/main/pgmq-extension/sql/pgmq.sql#L593
Length of 48 triggers exception that the max length should be 48.
Either the check should be changed from
>=
to>
or the rror message should say 47.The text was updated successfully, but these errors were encountered: