-
Notifications
You must be signed in to change notification settings - Fork 25
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
14 changed files
with
658 additions
and
58 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
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,17 @@ | ||
|
||
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/keys collating sequence (were already present in the AST) | ||
* tree.c (validate_indexed_key_field): process postponed | ||
key collating sequences | ||
* parser.y (collating_sequence_clause, collating_sequence_clause_key): | ||
replace CB_PENDING by CB_UNFINISHED on file and key collating sequence | ||
* flag.def, tree.c, 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-11-29 Fabrice Le Fessant <[email protected]> | ||
|
||
* cobc.c (cobc_clean_up): when save-temps specifies a directory, | ||
|
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
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,12 @@ | ||
|
||
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.c, coblocal.h: rename common_cmps to cob_cmps | ||
and make it available locally | ||
|
||
2023-12-14 David Declerck <[email protected]> | ||
|
||
* common.c (cob_terminate_routines, cob_call_with_exception_check): | ||
|
Oops, something went wrong.