Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
telosys
telosys-tools-generator
Commits
a250c04a
Commit
a250c04a
authored
Apr 19, 2022
by
l-gu
Browse files
FIX : $sql.pkColumns($entity)
parent
920e770d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/telosys/tools/generator/context/SqlInContext.java
View file @
a250c04a
...
...
@@ -434,7 +434,8 @@ public class SqlInContext {
if
(
sb
.
length
()
>
0
)
{
sb
.
append
(
", "
);
}
sb
.
append
(
convertToColumnName
(
attribute
.
getName
())
);
// sb.append( convertToColumnName(attribute.getName()) );
sb
.
append
(
attribute
.
getSqlColumnName
()
);
}
return
sb
.
toString
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment