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

[#11967] Skip leading space when binding values #11968

Merged
merged 1 commit into from
Jan 22, 2025

Conversation

kojandy
Copy link
Contributor

@kojandy kojandy commented Jan 16, 2025

Ignore leading space when binding parameters since an extra space is added at the agent side when packing values in String.

public static String bindValueToString(String[] bindValueArray, int limit) {
if (bindValueArray == null) {
return "";
}
final StringBuilder sb = new StringBuilder(32);
final int length = bindValueArray.length;
final int end = length - 1;
for (int i = 0; i < length; i++) {
if (sb.length() >= limit) {
// Appending omission postfix makes generating binded sql difficult. But without this, we cannot say if it's omitted or not.
appendLength(sb, length);
break;
}
final String bindValue = StringUtils.defaultString(bindValueArray[i], "");
StringUtils.appendAbbreviate(sb, bindValue, limit);
if (i < end) {
sb.append(", ");
}
}
return sb.toString();
}

Resolves #11967.

@kojandy kojandy requested a review from emeroad January 16, 2025 11:53
@kojandy kojandy self-assigned this Jan 16, 2025
@kojandy kojandy force-pushed the 11967-leading-space branch from 4325b54 to 6058274 Compare January 16, 2025 12:09
@kojandy kojandy mentioned this pull request Jan 22, 2025
1 task
@kojandy kojandy merged commit d31d099 into pinpoint-apm:master Jan 22, 2025
1 check passed
@kojandy kojandy deleted the 11967-leading-space branch January 22, 2025 10:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

binded sql format error
1 participant