Commit ed3e8700 authored by unknown's avatar unknown

Fix 'metaphon' function to correctly calculate the length of the returned string


sql/udf_example.cc:
  Calculate length of returned string correctly
parent b697b911
......@@ -497,7 +497,7 @@ char *metaphon(UDF_INIT *initid, UDF_ARGS *args, char *result,
}
}
}
*length= (ulong) (result - org_result);
*length= (ulong) (max(0, result - org_result - 1));
return org_result;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment