Skip to content
Snippets Groups Projects
Verified Commit a057444d authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX: trino showing replacement entities

parent 61315d28
No related branches found
No related tags found
No related merge requests found
Pipeline #37109 failed
......@@ -364,8 +364,10 @@ public class DatabaseUtils {
final List<Property> properties, final List<FlatProperty> props) {
if (props != null) {
for (final FlatProperty fp : props) {
final Property property = parseFlatProperty(fp);
properties.add(property);
if (!fp.name.equals("REPLACE ME!")) {
final Property property = parseFlatProperty(fp);
properties.add(property);
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment