forked from OCamlPro/gnucobol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for collating sequences on indexed files
- Loading branch information
Showing
12 changed files
with
386 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
|
||
2024-01-25 David Declerck <[email protected]> | ||
|
||
FR #459: support COLLATING SEQUENCE clause on SELECT / INDEXED files | ||
* codegen.c (output_file_initialization): output the indexed | ||
file collating sequence (was already present in the AST) | ||
* parser.y (collating_sequence_clause): remove the | ||
CB_PENDING warning on file collating sequence | ||
* flag.def, tree.h, cobc.c, parser.y: add and handle a new | ||
-fdefault-file-colseq flag to specify the default collating | ||
sequence to use for files without a collating sequence clause | ||
|
||
2023-10-17 David Declerck <[email protected]> | ||
|
||
BUG #923: generated modules init/clear unused decimal constants | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
|
||
2024-01-25 David Declerck <[email protected]> | ||
|
||
FR #459: support COLLATING SEQUENCE clause on SELECT / INDEXED files | ||
* fileio.c (bdb_setkeycol, bdb_bt_compare, indexed_open, ...): | ||
take the file collating sequence into account when comparing keys | ||
* common.h, common.c, coblocal.h: make common_cmps available locally | ||
* common.h, common.c, fileio.c: split the sort_collating field to | ||
distinguish actual collating sequence and code-set for writing | ||
(new field for the latter: code_set_write, to match code_set_read) | ||
|
||
2023-12-14 David Declerck <[email protected]> | ||
|
||
* common.c (cob_terminate_routines, cob_call_with_exception_check): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.