Document class_id_type column in ACL schema appendix#19463
Open
meteaksoyy wants to merge 1 commit into
Open
Conversation
The optional acl_class.class_id_type column and the aclClassIdSupported flag on BasicLookupStrategy and JdbcMutableAclService have existed since 5.0 but were not mentioned in the database schema appendix. Closes spring-projectsgh-7598 Signed-off-by: meteaksoyy <meteaksoy531@gmail.com>
meteaksoyy
force-pushed
the
document-acl-class-id-type
branch
from
July 23, 2026 16:41
a632ee2 to
f433788
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The ACL module has supported non-Long domain object identifiers (such as
UUID) via the optionalacl_class.class_id_typecolumn since 5.0, and the artifact shipscreateAclSchemaWithAclClassIdType.sql. However, the database schema appendix never mentions the column or theaclClassIdSupportedflag that enables it, which caused the confusion in gh-7598.This adds a "UUID and String Object Identities" section to the ACL part of the appendix covering the extra column, the required
setAclClassIdSupported(true)calls onBasicLookupStrategyandJdbcMutableAclService, and the shipped schema file.The original runtime failure reported in gh-7598 (a missing
class_id_typecolumn breakingBasicLookupStrategy) was already fixed by 4ab9da1, so documentation appears to be the remaining work.Closes gh-7598