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
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c626435
Check the server capabilities instead of the version for the attribut…
Dec 4, 2023
8ca08e1
Fix use of `strncmp()` without a prototype.
rsomla Dec 4, 2023
5ea68a8
Fix use of nullptr_t without std:: qualifier.
rsomla Dec 5, 2023
9bd3814
Disable 'implicit-function-declaration' clang errors.
rsomla Dec 5, 2023
89aad80
Bug#35790175 - Cannot run parameterized stored procedure using My SQL…
Dec 12, 2023
dded259
Replace my_thread_end() call by mysql_thread_end()
Dec 14, 2023
8be6676
Bug #26474471/61991 - SQLGetData return shorter than expected string …
Dec 14, 2023
365b656
WL#15744 - Handle the use of deprecated ODBC API options and functions
Dec 20, 2023
d07be49
Add files to .gitignore
rsomla1 Jan 3, 2024
8c7d5c9
Remove 'noinstall' from zip package name
Jan 25, 2024
f03d1a4
WL#16208: Update bundled OTel API headers
rsomla1 Jan 26, 2024
80412e1
WL#16208: Update bundled OTel API headers
karenc-bq Jun 18, 2024
3446ead
WL#16155 - Remove the FIDO authentication mechanism
Jan 31, 2024
a06f287
WL#16157: Add version info resources on Windows
rsomla1 Feb 2, 2024
1a58652
Ignore FIDO authentication plugin if bundled with the server.
rsomla1 Feb 21, 2024
0cef56d
cmake: Ignore new libraries bundled with 8.4.0 server, find SASL plug…
rsomla1 Feb 29, 2024
c63fa0f
test: Column referenced in a foreign key must be unique
rsomla1 Feb 29, 2024
517f81f
Bug#36238361 - The NO_SCHEMA option is deleted rather than being set …
Mar 1, 2024
e824c60
Fix creating DSN with the empty password
Mar 4, 2024
d612278
bug#36228848: Contribution: test: Fix compile errors on GCC 14
csfore Jan 25, 2024
323c359
Fix SQLColumns() to handle unknown column types.
Mar 8, 2024
6e26fb4
Handle changes in MYSQL_FIELD struct from server includes.
Mar 12, 2024
258358d
WL15967 - Query attributes for server-side PS
Feb 27, 2024
9a2f665
chore: update github actions to use 8.4.0
karenc-bq Jun 18, 2024
1fc589e
chore: enable linux tests
karenc-bq Jun 18, 2024
e9bd6cf
chore: link resolve
karenc-bq Jun 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Replace my_thread_end() call by mysql_thread_end()
Change-Id: Idb19f0f4b9149c49f22bf20424000013ef6ca283
Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
commit dded259b8fc159e32f978e44ea2bb189e84cf628
2 changes: 1 addition & 1 deletion driver/dll.cc
Original file line number Diff line number Diff line change
@@ -212,7 +212,7 @@ int APIENTRY LibMain(HANDLE inst, DWORD ul_reason_being_called,
break;
case DLL_THREAD_DETACH:
#ifdef THREAD
my_thread_end();
mysql_thread_end();
#endif
break;