Skip to content

Commit f28a966

Browse files
committed
#435 Fix 'INDEX BY' clause followed by multiple identifiers.
1 parent 14d0482 commit f28a966

File tree

4 files changed

+360
-247
lines changed

4 files changed

+360
-247
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,6 +1330,9 @@ For multisegment variable lengths tests:
13301330
![](performance/images/exp3_multiseg_wide_records_throughput.svg) ![](performance/images/exp3_multiseg_wide_mb_throughput.svg)
13311331

13321332
## Changelog
1333+
- #### 2.4.4 will be released soon.
1334+
- [#435](https://github.com/AbsaOSS/cobrix/issues/435) Fixed 'INDEXED BY' clause followed by multiple identifiers.
1335+
13331336
- #### 2.4.3 released 26 October 2021.
13341337
- [#430](https://github.com/AbsaOSS/cobrix/issues/430) Added support for 'twisted' RDW headers when big-endian or little-endian RDWs use unexpected RDW bytes.
13351338

cobol-parser/src/main/scala/za/co/absa/cobrix/cobol/parser/antlr/copybookParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dependingOn:
9090
;
9191

9292
indexedBy:
93-
INDEXED BY? identifier
93+
INDEXED BY? identifier (','? IDENTIFIER)*
9494
;
9595

9696
occurs:

0 commit comments

Comments
 (0)