]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add additional character type types to supported data types for cdr_adaptive_odbc
authorJonathan Rose <jrose@digium.com>
Tue, 28 Feb 2012 21:43:51 +0000 (21:43 +0000)
committerJonathan Rose <jrose@digium.com>
Tue, 28 Feb 2012 21:43:51 +0000 (21:43 +0000)
The reporter was uable to use varchar utf8_unicode_ci with cdr_adaptive_odbc, so
this patch adds those along with some other character types to the list of types
cdr_adaptive_odbc will work using the varchar conditions. The problem wasn't really
UTF8 characters as much as it was a failure to respond to the exact type that was
declared/in use on that database.

(closes issue ASTERISK-19334)
Reported By: Igor Nikolaev
Patches:
cdr_adaptive_odbc.patch uploaded by Igor Nikolaev (license 6236)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@357455 65c4cc65-6c06-0410-ace0-fbb531ad65f3

cdr/cdr_adaptive_odbc.c

index ff6eeb4f9cf5de86ebe6931ed3fb97380e8e1020..fe0abb7ea8b8c4214638fad28d0499035273f15e 100644 (file)
@@ -421,6 +421,9 @@ static int odbc_log(struct ast_cdr *cdr)
                                case SQL_CHAR:
                                case SQL_VARCHAR:
                                case SQL_LONGVARCHAR:
+                               case SQL_WCHAR:
+                               case SQL_WVARCHAR:
+                               case SQL_WLONGVARCHAR:
                                case SQL_BINARY:
                                case SQL_VARBINARY:
                                case SQL_LONGVARBINARY: