the query:
select deployment_app_status.* , deployment_apps_versions.* , deployment_apps.* , deployment_tasks_descriptors.* , deployment_packages.* from deployment_app_status left join deployment_apps_versions on (deployment_app_status.app_version_id = deployment_apps_versions.app_version_id) left join deployment_apps on (deployment_apps.app_id = deployment_apps_versions.app_id) left join deployment_tasks_descriptors on (deployment_tasks_descriptors.task_descriptor_id = deployment_apps_versions.task_descriptor_id) left join deployment_packages on (deployment_packages.package_id = deployment_tasks_descriptors.package_id)
Oz Gilat
added a comment - - edited you can get the database dump at
https://drive.google.com/file/d/0B_uEVRIKDy09U0p0OVBKV0o5NnM/view?usp=sharing
the query:
select deployment_app_status.* , deployment_apps_versions.* , deployment_apps.* , deployment_tasks_descriptors.* , deployment_packages.* from deployment_app_status left join deployment_apps_versions on (deployment_app_status.app_version_id = deployment_apps_versions.app_version_id) left join deployment_apps on (deployment_apps.app_id = deployment_apps_versions.app_id) left join deployment_tasks_descriptors on (deployment_tasks_descriptors.task_descriptor_id = deployment_apps_versions.task_descriptor_id) left join deployment_packages on (deployment_packages.package_id = deployment_tasks_descriptors.package_id)
Thanks, but this is not a dump (doesn't contain create table statements) - and I don't need the entire database, only tables which are used in select statement.
Georg Richter
added a comment - Thanks, but this is not a dump (doesn't contain create table statements) - and I don't need the entire database, only tables which are used in select statement.
in the select, when you switch ", deployment_tasks_descriptors.* , deployment_packages.* " to ",deployment_packages.*, deployment_tasks_descriptors.* " -
the crash is gone...
Oz Gilat
added a comment - - edited
One interesting note -
in the select, when you switch ", deployment_tasks_descriptors.* , deployment_packages.* " to ",deployment_packages.*, deployment_tasks_descriptors.* " -
the crash is gone...
Which server version do you use?
Also it would be good to know if you really use Connector/C 2.2.0 - According to the line numbers in Capture.png it will not match 2.2.0 - likely it's a much older version.
I wasn't able to reproduce problem with latest C/C version 2.2.2 and MariaDB Server 10.1
Georg Richter
added a comment - - edited Which server version do you use?
Also it would be good to know if you really use Connector/C 2.2.0 - According to the line numbers in Capture.png it will not match 2.2.0 - likely it's a much older version.
I wasn't able to reproduce problem with latest C/C version 2.2.2 and MariaDB Server 10.1
We had same crash in CONC-60 with similiar line numbers, so I highly assume that you're using an old 1.0 or 1.1 version of Connector/C
Georg Richter
added a comment - We had same crash in CONC-60 with similiar line numbers, so I highly assume that you're using an old 1.0 or 1.1 version of Connector/C
Also verified it's version libmariadb connector C 2.2.2.
Attached new dump maria220316.dmplibmariadb.dll and dll and pdb used (received from regular installation from your website..)
also reproduced on "Server version: 5.6.16 MySQL Community Server (GPL)" running on windows 10
Oz Gilat
added a comment - - edited Also verified it's version libmariadb connector C 2.2.2.
Attached new dump maria220316.dmp libmariadb.dll and dll and pdb used (received from regular installation from your website..)
also reproduced on "Server version: 5.6.16 MySQL Community Server (GPL)" running on windows 10
would it be possible to provide
a) a Zend server version which uses libmariadb.dll (with some instructions how to repeat the bug)
or b)
a wireshark dump
Thanks !
Georg Richter
added a comment - Hi Oz,
would it be possible to provide
a) a Zend server version which uses libmariadb.dll (with some instructions how to repeat the bug)
or b)
a wireshark dump
Thanks !
Hi,
thx for your bug report.
can you please provide a table dump and the select statement?
Thanks!