Skip to content

Commit

Permalink
Merge pull request #2271 from telefonicaid/fix/wrong_char_dm_by_entit…
Browse files Browse the repository at this point in the history
…y_type_schema_database

Removes "_" in schema name for DM -schema family (#2201) (reopens for Postgis)
  • Loading branch information
fgalan authored Jun 27, 2023
2 parents 670da1f + 5421945 commit 09c02d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [cygnus-ngsi] Removes "_" in schema name for DM -schema family (#2270, #2201 reopens for Postgis)

Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ public String buildSchemaName(String service, String subService) throws CygnusBa
case DMBYENTITYDATABASESCHEMA:
case DMBYENTITYTYPEDATABASESCHEMA:
case DMBYFIXEDENTITYTYPEDATABASESCHEMA:
name = NGSIUtils.encode(subService, false, true);
name = NGSIUtils.encode(subService, true, false);
break;
default:
name = NGSIUtils.encode(service, false, true);
Expand Down

0 comments on commit 09c02d8

Please sign in to comment.