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

Rebase: 8.4.0 #184

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open

Rebase: 8.4.0 #184

wants to merge 26 commits into from

Commits on Jun 18, 2024

  1. Check the server capabilities instead of the version for the attribut…

    …es support
    
    Change-Id: I2ed95b4dfdb9fbd6bf17ae24dd2c6302b30f170a
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c626435 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8ca08e1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ea68a8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9bd3814 View commit details
    Browse the repository at this point in the history
  5. Bug#35790175 - Cannot run parameterized stored procedure using My SQL…

    … ODBC 8.1 connector
    
    Change-Id: Ibc6e32a9e5105d7cc721d1c36290f7cf53c88642
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    89aad80 View commit details
    Browse the repository at this point in the history
  6. Replace my_thread_end() call by mysql_thread_end()

    Change-Id: Idb19f0f4b9149c49f22bf20424000013ef6ca283
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    dded259 View commit details
    Browse the repository at this point in the history
  7. Bug #26474471/61991 - SQLGetData return shorter than expected string …

    …when multiple rows are fetched
    
    Change-Id: I5468aaab3730dd6e558a60b13d0fb80388a6a177
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    8be6676 View commit details
    Browse the repository at this point in the history
  8. WL#15744 - Handle the use of deprecated ODBC API options and functions

    Change-Id: If069541d26580a66193530e9c3953df23d3011b7
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    365b656 View commit details
    Browse the repository at this point in the history
  9. Add files to .gitignore

    rsomla1 authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    d07be49 View commit details
    Browse the repository at this point in the history
  10. Remove 'noinstall' from zip package name

    Change-Id: Iae85cca6881a021fa06c220a1e903a90f6fc8b6d
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    8c7d5c9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f03d1a4 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    80412e1 View commit details
    Browse the repository at this point in the history
  13. WL#16155 - Remove the FIDO authentication mechanism

    Change-Id: Iceb537c2305f32e76928add7436e926303500000
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    3446ead View commit details
    Browse the repository at this point in the history
  14. WL#16157: Add version info resources on Windows

    Change-Id: I6c5ea26bcc6dbed1443d059ad7d5021fc5b58aef
    rsomla1 authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    a06f287 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1a58652 View commit details
    Browse the repository at this point in the history
  16. cmake: Ignore new libraries bundled with 8.4.0 server, find SASL plug…

    …ins in a new location on Win
    rsomla1 authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    0cef56d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    c63fa0f View commit details
    Browse the repository at this point in the history
  18. Bug#36238361 - The NO_SCHEMA option is deleted rather than being set …

    …to 0 value
    
    Change-Id: I274a6d289faf53d5abbbfbf544efc1c59c6311ae
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    517f81f View commit details
    Browse the repository at this point in the history
  19. Fix creating DSN with the empty password

    Change-Id: I165360a99091f144b8c51e2dd5c731d9783f9a00
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    e824c60 View commit details
    Browse the repository at this point in the history
  20. bug#36228848: Contribution: test: Fix compile errors on GCC 14

    Starting in GCC 14, it will begin enforcing C99 so errors regarding
    incompatible pointer types and so on will be more common. There are
    currently three C99 build errors that occur:
    
    1:
    test/odbctap.h:107:18: error: implicit declaration of function `wcslen'
    [-Wimplicit-function-declaration]
      107 |   for (i= 0; i < wcslen(wstr); ++i)
    
    2:
    test/odbctap.h:601:20: error: initialization of `SQLWCHAR *'
    {aka `short unsigned int *'} from incompatible pointer type
    
    `wchar_t *' {aka `int *'} [-Wincompatible-pointer-types]
      601 |   SQLWCHAR *val_a= (a), *val_b= (b);
    
    3:
    error: passing argument 6 of `SQLGetData' from incompatible pointer
    type [-Wincompatible-pointer-types]
     1172 |   ok_stmt(hstmt, SQLGetData(hstmt, 0, SQL_C_BOOKMARK, abookmark, 255, &outlen));
    
    The first is fixed by importing <wchar.h>, the second by changing
    SQLWCHAR to wchar_t, and the third by setting outlen's type to the
    SQLLEN type.
    csfore authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    d612278 View commit details
    Browse the repository at this point in the history
  21. Fix SQLColumns() to handle unknown column types.

    Change-Id: I8399fc712322c590f73f84a6901ac82069e42fe6
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    323c359 View commit details
    Browse the repository at this point in the history
  22. Handle changes in MYSQL_FIELD struct from server includes.

    Change-Id: Ide9501d1f5312e3bb6e15399dde35a1e9985378c
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    6e26fb4 View commit details
    Browse the repository at this point in the history
  23. WL15967 - Query attributes for server-side PS

    Change-Id: I0573c06596818e00128a52076d3814e61056a6ba
    Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    258358d View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    9a2f665 View commit details
    Browse the repository at this point in the history
  25. chore: enable linux tests

    karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    1fc589e View commit details
    Browse the repository at this point in the history
  26. chore: link resolve

    karenc-bq committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    e9bd6cf View commit details
    Browse the repository at this point in the history