If we have auto_increment field in the table, and we insert there a few rows using parameter array, and we have indicator array set for the auto_increment field, and for some row indicator value is set to STMT_INDICATOR_NULL or STMT_INDICATOR_IGNORE, for all subsequent rows server insert values like if same indicator value was set for them, too. i.e. it auto-incremented values instead of values specified in bound array.
I don't think C/C can be here to blame - I traced execution, and things look sane. Besides same error is not exposed with 10.2 server.
I am not sure if that is "major" issue, as this does not look like very probable scenario, but on other hand c/odbc testcases have it. Besides I don't think it's very hard to fix.
Below is short program to repeat it
#include <stdio.h>
|
#include <stdarg.h>
|
#include <stdlib.h>
|
#include <string.h>
|
#include <mysql.h>
|
|
#ifndef OK
|
# define OK 0
|
#endif
|
#ifndef FAIL
|
# define FAIL 1
|
#endif
|
#ifndef SKIP
|
# define SKIP -1
|
#endif
|
#ifndef FALSE
|
# define FALSE 0
|
#endif
|
#ifndef TRUE
|
# define TRUE 1
|
#endif
|
|
void
|
diag(char const *fmt, ...)
|
{
|
va_list ap;
|
va_start(ap, fmt);
|
fprintf(stdout, "# ");
|
vfprintf(stdout, fmt, ap);
|
fprintf(stdout, "\n");
|
va_end(ap);
|
}
|
|
#define check_stmt_rc(_rc, _stmt) \
|
if (_rc)\
|
{\
|
diag("Error: [%s] %s(%d) (%s: %d)", mysql_stmt_sqlstate(_stmt), mysql_stmt_error(_stmt), mysql_stmt_errno(_stmt), __FILE__, __LINE__);\
|
return(FAIL);\
|
}
|
|
#define check_mysql_rc(rc, mysql) \
|
if (rc)\
|
{\
|
diag("Error (%d): %s (%d) in %s line %d", rc, mysql_error(mysql), \
|
mysql_errno(mysql), __FILE__, __LINE__);\
|
return(FAIL);\
|
}
|
|
#define FAIL_IF(expr, reason)\
|
if (expr)\
|
{\
|
diag("Error: %s (%s: %d)", (reason) ? reason : "", __FILE__, __LINE__);\
|
return FAIL;\
|
}
|
|
|
int main(int argc, char *argv)
|
{
|
MYSQL *ma;
|
MYSQL_STMT *stmt;
|
MYSQL_BIND bind[1];
|
MYSQL_RES *res;
|
MYSQL_ROW row;
|
char indicator[]= {0, STMT_INDICATOR_NULL, 0/*STMT_INDICATOR_IGNORE*/};
|
my_bool error[1];
|
int i, id[]= {2, 3, 777}, param_count= 1, count= sizeof(id)/sizeof(id[0]);
|
my_bool UpdateMaxLength= 1;
|
|
ma = mysql_init(NULL);
|
if (!mysql_real_connect(ma, "localhost", "root", "", "test", 3306, NULL, 0))
|
{
|
printf("Could not connect: %s\n", mysql_error(ma));
|
exit(1);
|
}
|
else
|
{
|
printf("Server info %s\nClient info: %s\n",
|
mysql_get_server_info(ma), mysql_get_client_info());
|
}
|
|
stmt = mysql_stmt_init(ma);
|
|
if (!stmt)
|
{
|
diag("Could not init stmt handler(s)");
|
return FAIL;
|
}
|
|
check_mysql_rc(mysql_query(ma, "DROP TABLE IF EXISTS ai_field_value"), ma);
|
check_mysql_rc(mysql_query(ma, "CREATE TABLE ai_field_value (id int not null primary key auto_increment)"), ma);
|
check_stmt_rc(mysql_stmt_prepare(stmt, "INSERT INTO ai_field_value(id) values(?)", -1), stmt);
|
|
memset(bind, 0, sizeof(bind));
|
bind[0].buffer_type = MYSQL_TYPE_LONG;
|
bind[0].buffer = (void *)id;
|
bind[0].buffer_length = 0;
|
bind[0].is_null = NULL;
|
bind[0].length = NULL;
|
bind[0].error = error;
|
bind[0].u.indicator= indicator;
|
|
mysql_stmt_attr_set(stmt, STMT_ATTR_ARRAY_SIZE, (void*)&count);
|
check_stmt_rc(mysql_stmt_bind_param(stmt, bind), stmt);
|
|
check_stmt_rc(mysql_stmt_execute(stmt), stmt);
|
|
mysql_stmt_close(stmt);
|
|
check_mysql_rc(mysql_query(ma, "SELECT id FROM ai_field_value"), ma);
|
|
res= mysql_store_result(ma);
|
|
i= 0;
|
while (row= mysql_fetch_row(res))
|
{
|
diag("id= %s", row[0]);
|
FAIL_IF(atoi(row[0]) != id[i++], "Values is differented form the expected");
|
}
|
check_mysql_rc(mysql_query(ma, "DROP TABLE ai_field_value"), ma);
|
|
mysql_close(ma);
|
|
exit(0);
|
}
|
- causes
-
ODBC-132
Few Testcases fail against 10.3 server
-
-
Closed
{"report":{"fcp":1451.6999998092651,"ttfb":242.5999994277954,"pageVisibility":"visible","entityId":65448,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"d11c968f-a729-46de-9a4f-40760459782d","navigationType":0,"readyForUser":1546.0999994277954,"redirectCount":0,"resourceLoadedEnd":1257,"resourceLoadedStart":289.5999994277954,"resourceTiming":[{"duration":591.9000005722046,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":289.5999994277954,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":289.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":881.5,"responseStart":0,"secureConnectionStart":0},{"duration":592.1000003814697,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":289.8999996185303,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":289.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":882,"responseStart":0,"secureConnectionStart":0},{"duration":599.7999992370605,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":290,"connectEnd":290,"connectStart":290,"domainLookupEnd":290,"domainLookupStart":290,"fetchStart":290,"redirectEnd":0,"redirectStart":0,"requestStart":290,"responseEnd":889.7999992370605,"responseStart":889.7999992370605,"secureConnectionStart":290},{"duration":632.1999998092651,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":290.19999980926514,"connectEnd":290.19999980926514,"connectStart":290.19999980926514,"domainLookupEnd":290.19999980926514,"domainLookupStart":290.19999980926514,"fetchStart":290.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":290.19999980926514,"responseEnd":922.3999996185303,"responseStart":922.3999996185303,"secureConnectionStart":290.19999980926514},{"duration":635.7000007629395,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":290.29999923706055,"connectEnd":290.29999923706055,"connectStart":290.29999923706055,"domainLookupEnd":290.29999923706055,"domainLookupStart":290.29999923706055,"fetchStart":290.29999923706055,"redirectEnd":0,"redirectStart":0,"requestStart":290.29999923706055,"responseEnd":926,"responseStart":926,"secureConnectionStart":290.29999923706055},{"duration":636.1000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":290.5999994277954,"connectEnd":290.5999994277954,"connectStart":290.5999994277954,"domainLookupEnd":290.5999994277954,"domainLookupStart":290.5999994277954,"fetchStart":290.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":290.5999994277954,"responseEnd":926.6999998092651,"responseStart":926.6999998092651,"secureConnectionStart":290.5999994277954},{"duration":636.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":290.69999980926514,"connectEnd":290.69999980926514,"connectStart":290.69999980926514,"domainLookupEnd":290.69999980926514,"domainLookupStart":290.69999980926514,"fetchStart":290.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":290.69999980926514,"responseEnd":927.1999998092651,"responseStart":927.1999998092651,"secureConnectionStart":290.69999980926514},{"duration":642.3999996185303,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":291,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":291,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":933.3999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":636.5999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":291.19999980926514,"connectEnd":291.19999980926514,"connectStart":291.19999980926514,"domainLookupEnd":291.19999980926514,"domainLookupStart":291.19999980926514,"fetchStart":291.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":291.19999980926514,"responseEnd":927.7999992370605,"responseStart":927.7999992370605,"secureConnectionStart":291.19999980926514},{"duration":642.3000001907349,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":291.29999923706055,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":291.29999923706055,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":933.5999994277954,"responseStart":0,"secureConnectionStart":0},{"duration":637.2999992370605,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":291.5,"connectEnd":291.5,"connectStart":291.5,"domainLookupEnd":291.5,"domainLookupStart":291.5,"fetchStart":291.5,"redirectEnd":0,"redirectStart":0,"requestStart":291.5,"responseEnd":928.7999992370605,"responseStart":928.7999992370605,"secureConnectionStart":291.5},{"duration":657.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":312.0999994277954,"connectEnd":312.0999994277954,"connectStart":312.0999994277954,"domainLookupEnd":312.0999994277954,"domainLookupStart":312.0999994277954,"fetchStart":312.0999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":312.0999994277954,"responseEnd":969.5999994277954,"responseStart":969.5999994277954,"secureConnectionStart":312.0999994277954},{"duration":944.9000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":312.0999994277954,"connectEnd":312.0999994277954,"connectStart":312.0999994277954,"domainLookupEnd":312.0999994277954,"domainLookupStart":312.0999994277954,"fetchStart":312.0999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":312.0999994277954,"responseEnd":1257,"responseStart":1257,"secureConnectionStart":312.0999994277954}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":27,"responseStart":242,"responseEnd":311,"domLoading":288,"domInteractive":1642,"domContentLoadedEventStart":1642,"domContentLoadedEventEnd":1720,"domComplete":2553,"loadEventStart":2553,"loadEventEnd":2554,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1607.3999996185303},{"name":"bigPipe.sidebar-id.end","time":1608.2999992370605},{"name":"bigPipe.activity-panel-pipe-id.start","time":1608.3999996185303},{"name":"bigPipe.activity-panel-pipe-id.end","time":1623.8999996185303},{"name":"activityTabFullyLoaded","time":1731.5999994277954}],"measures":[],"correlationId":"32645303eafaa8","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":101,"dbReadsTimeInMs":9,"dbConnsTimeInMs":17,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}