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
Fix creating DSN with the empty password
Change-Id: I165360a99091f144b8c51e2dd5c731d9783f9a00
Bogdan Degtyariov authored and karenc-bq committed Jun 18, 2024
commit e824c6021a583798bbd2d7860630d480bae7a419
7 changes: 3 additions & 4 deletions util/installer.cc
Original file line number Diff line number Diff line change
@@ -1173,11 +1173,10 @@ int DataSource::add() {
if (k == W_PWD MFA_OPTS(OR_K_EQUAL)) {
// Escape the password(s)
val = escape_brackets(v, false);
}

// For options without value that were not skipped set '0' as their value.
if (val.empty())
} else if (val.empty()) {
// For options without value that were not skipped set '0' as their value.
val = {(SQLWCHAR)'0'};
}

if (write_opt(k.c_str(), val.c_str()))
return rc;