Skip to content
Snippets Groups Projects
Verified Commit 3c888ba1 authored by Martin Weise's avatar Martin Weise
Browse files

Fixed test

parent ec340990
No related branches found
No related tags found
1 merge request!277Dev
...@@ -362,7 +362,7 @@ public interface MariaDbMapper { ...@@ -362,7 +362,7 @@ public interface MariaDbMapper {
.append(ck) .append(ck)
.append(")")); .append(")"));
} }
if (!data.getDescription().isBlank()) { if (data.getDescription() != null && !data.getDescription().isBlank()) {
/* create table comments */ /* create table comments */
stringBuilder.append(" COMMENT \"") stringBuilder.append(" COMMENT \"")
.append(data.getDescription()) .append(data.getDescription())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment