-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
developments for postgresql v14 (#104)
* Fix prompt_for_password() against PostgreSQL v14 Beta1 This patch handles the change of PostgreSQL core's 67a472d7. It corresponds the change of simple_prompt() interface and removes arbitrary restrictions on password length. * Rename from appendStringInfoVA() to appendStringInfoVA_c() PostgreSQL core code has the same function name, but the implementation is not same. So, rename from appendStringInfoVA() to appendStringInfoVA_c(). * Fix the wrong return type of *WriterInsertProc * Reuse the RelationSetNewRelfilenode's definition for v14 beta1 * Fix pg_getmessage arguments against PostgreSQL v14 Beta1 This patch handles the changes of PostgreSQL core's 9626325d. It adds heuristic incoming-message-size limits in the server. * Fix the wrong arguments types of functions Fix TupleParserInit() and TupleParseDumpRecord() * Fix EState struct againt PostgreSQL v14 Beta1 This patch handles the following PostgreSQL core's changes. 1. The patch(1375422c) removes es_result_relations and es_num_result_relations to simplify things. 2. The patch(a04daa97) removes es_result_relation_info to improve maintainability. * Fix argments of reindex_index() againt PostgreSQL v14 Beta1 To handle the PostgreSQL's patch(a3dc9260), which refactors option handling of REINDEX. * Update nbtsort.c against PostgreSQL v14 Beta1 * Update test codes for PostgreSQL v14 Beta1 * Update the github action workflow for PostgreSQL14 Beta1
- Loading branch information
Showing
12 changed files
with
2,163 additions
and
27 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 |
---|---|---|
|
@@ -17,6 +17,7 @@ jobs: | |
strategy: | ||
matrix: | ||
PGVERSION: # TODO: build with master branch | ||
- 14beta1 | ||
- 13.2 | ||
- 12.6 | ||
- 11.11 | ||
|
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
Oops, something went wrong.