Skip to content

Commit 3428268

Browse files
committed
fix: switch comment bloc at the end in csv rules parsing
1 parent e9136c0 commit 3428268

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

arc-core/src/main/java/fr/insee/arc/core/service/p2chargement/bo/CSVFormatRules.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ public enum CSVFormatRules implements IParseFormatRules {
3535
FILTER_WHERE("<where>","</where>", true),
3636
// index creation expression
3737
INDEX("<index>","</index>", true),
38-
39-
// comment bloc
40-
COMMENT("/*","*/", true),
41-
38+
4239
// to add a column
4340
// column_name=column sql expression
4441
// column name
4542
COLUMN_DEFINITION(null,"=", false),
4643
// column definition
47-
COLUMN_EXPRESSION("=",null, true)
44+
COLUMN_EXPRESSION("=",null, true),
45+
46+
// comment bloc
47+
COMMENT("/*","*/", true)
4848
;
4949

5050

0 commit comments

Comments
 (0)