Index: ChangeLog =================================================================== --- ChangeLog (revision 1052) +++ ChangeLog (working copy) @@ -9,6 +9,8 @@ * Recordset-based update fails if blob field is queried. (Bug #19065) * Descriptor records were not cleared correctly when calling SQLFreeStmt(SQL_UNBIND). (Bug #34271) + * The driver incorrectly reported that the SQL standard CAST() and + CONVERT() functions were supported. (Bug #33808) ---- Index: driver/info.c =================================================================== --- driver/info.c (revision 1052) +++ driver/info.c (working copy) @@ -164,7 +164,8 @@ MYINFO_SET_ULONG(0); case SQL_CONVERT_FUNCTIONS: - MYINFO_SET_ULONG(SQL_FN_CVT_CAST | SQL_FN_CVT_CONVERT); + /* MySQL's CONVERT() and CAST() functions aren't SQL compliant yet. */ + MYINFO_SET_ULONG(0); case SQL_CORRELATION_NAME: MYINFO_SET_USHORT(SQL_CN_DIFFERENT);