Skip to content

Commit

Permalink
Unittest are failing because of the name pattern. All objects includi…
Browse files Browse the repository at this point in the history
…ng user-names should fallow the same naming convention.

Signed-off-by: BerkantKarduman <[email protected]>
Signed-off-by: Berkant KARDUMAN <[email protected]>
  • Loading branch information
berkant-k committed Nov 15, 2023
1 parent d5b439f commit 8e8f136
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Handles common syntax for generating DDL
*/
public class DataDefinitionUtil {
private static final String NAME_PATTERN_RGX = "[a-zA-Z_][-\\w]*$";
private static final String NAME_PATTERN_RGX = "[a-zA-Z_][\\w]*$";
private static final Pattern NAME_PATTERN = Pattern.compile(NAME_PATTERN_RGX);

/**
Expand Down

0 comments on commit 8e8f136

Please sign in to comment.