Skip to content

Commit

Permalink
fix: used the correct property name in alter property statement
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Dec 12, 2023
1 parent cacb8f3 commit b3658cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public OResultSet executeDDL(OCommandContext ctx) {

OProperty property = clazz.getProperty(propertyName.getStringValue());
if (property == null) {
throw new OCommandExecutionException("Property " + property + " not found on class " + clazz);
throw new OCommandExecutionException("Property " + propertyName.getStringValue() + " not found on class " + clazz);
}

OResultInternal result = new OResultInternal();
Expand Down

0 comments on commit b3658cb

Please sign in to comment.