I am using this group_concat function in mysql stored procedure to concatenate integer value.
group_concat(DISTINCT column_name separator ', ')
It is working fine on windows machine but when I am seeing the output of this on centos(linux) server via web service (that only returns the out of stored procedure not doing any other processing) its returning some garbage integers value. Those values does not exist in any of my table in database. in all stored procedure its behaving the same way.
Could you Please help me out why this is happening on centos(linux) server.