-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
Update max_identifier_length length to 128 #260
Comments
Note that 128 is not the "enforceable" limit, but may be enforceable in the future, see here: |
Ran into this today, I'm using Rails to do some things with an existing cockroach database, so I don't have any control over the index names. The index name is clearly valid for cockroach because everything works fine when the server is running, but when trying to run a test rails throws an error.
|
You all are pretty right, this was overriden when cockroachdb didn't have support for |
This is no longer necessary as CRDB now supports `SHOW max_identifier_length`, which is the same as PostgreSQL's adapter implementation. Fixes #260
This is no longer necessary as CRDB now supports `SHOW max_identifier_length`, which is the same as PostgreSQL's adapter implementation. Fixes #260
This is no longer necessary as CRDB now supports `SHOW max_identifier_length`, which is the same as PostgreSQL's adapter implementation. Fixes #260
As you can see here:
max_identifier_length
is set to 64, however when I run in CockroachDB:SHOW max_identifier_length;
I get
128
. I believe max_identifier_length should be updated from 64 to 128.The text was updated successfully, but these errors were encountered: