Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

developments for postgresql v14 #104

Merged
merged 11 commits into from
Jun 11, 2021
Merged

Commits on May 31, 2021

  1. 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.
    mikecaat committed May 31, 2021
    Configuration menu
    Copy the full SHA
    a3bdfb5 View commit details
    Browse the repository at this point in the history
  2. 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().
    mikecaat committed May 31, 2021
    Configuration menu
    Copy the full SHA
    969896c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d8ceb1a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5d4fb1f View commit details
    Browse the repository at this point in the history
  5. 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.
    mikecaat committed May 31, 2021
    Configuration menu
    Copy the full SHA
    f822a24 View commit details
    Browse the repository at this point in the history
  6. Fix the wrong arguments types of functions

    Fix TupleParserInit() and TupleParseDumpRecord()
    mikecaat committed May 31, 2021
    Configuration menu
    Copy the full SHA
    e842847 View commit details
    Browse the repository at this point in the history
  7. 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.
    mikecaat committed May 31, 2021
    Configuration menu
    Copy the full SHA
    723c66a View commit details
    Browse the repository at this point in the history
  8. Fix argments of reindex_index() againt PostgreSQL v14 Beta1

    To handle the PostgreSQL's patch(a3dc9260), which refactors
    option handling of REINDEX.
    mikecaat committed May 31, 2021
    Configuration menu
    Copy the full SHA
    e19b5b1 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2021

  1. Configuration menu
    Copy the full SHA
    48d4d31 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a015849 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a8f3170 View commit details
    Browse the repository at this point in the history