Skip to content

Commit

Permalink
CB-6236 fix checking read only status for a column with invalid key i…
Browse files Browse the repository at this point in the history
…dentifier (#3276)
  • Loading branch information
yagudin10 authored Feb 21, 2025
1 parent 8d7165b commit 12ff403
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public boolean isAutoGenerated() {

@Property
public boolean isReadOnly() {
return DBExecUtils.isAttributeReadOnly(attrMeta);
return DBExecUtils.isAttributeReadOnly(attrMeta, true);
}

@Property
Expand Down

0 comments on commit 12ff403

Please sign in to comment.