!3032 添加odbc依赖添加到包中,并添加dblink基于odbc连接失败时错误的详情信息

Merge pull request !3032 from 陈志凯/master
This commit is contained in:
opengauss-bot 2023-03-07 09:12:25 +00:00 committed by Gitee
commit 85748e3c12
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
5 changed files with 13 additions and 4 deletions

View File

@ -835,6 +835,7 @@
./lib/libpagecompression.so*
./lib/libdssapi.so
./lib/libdms.so
./lib/libodbc.so*
./include/postgresql/server/postgres_ext.h
./include/postgresql/server/pg_config_os.h

View File

@ -884,6 +884,7 @@
./lib/postgresql/latin2_and_win1250.so
./lib/postgresql/euc2004_sjis2004.so
./lib/libhll.so
./lib/libodbc.so*
./include/postgresql/server/postgres_ext.h
./include/postgresql/server/pg_config_os.h

View File

@ -887,6 +887,7 @@
./lib/postgresql/latin2_and_win1250.so
./lib/postgresql/euc2004_sjis2004.so
./lib/libhll.so
./lib/libodbc.so*
./include/postgresql/server/postgres_ext.h
./include/postgresql/server/pg_config_os.h

View File

@ -832,6 +832,7 @@
./lib/libpagecompression.so*
./lib/libdssapi.so
./lib/libdms.so
./lib/libodbc.so*
./include/postgresql/server/postgres_ext.h
./include/postgresql/server/pg_config_os.h

View File

@ -106,6 +106,7 @@ static bool UseODBCLinker(char* connstr);
#define REMOTE_CONN_HASH (get_session_context()->remoteConnHash)
/* initial number of connection hashes */
#define NUMCONN 16
#define NAX_ERR_MSG_LEN 1000
#define MAX_BUF_LEN 100000
#define MAX_DRIVERNAME_LEN 50
#define DBLINK_NOTIFY_COLS 3
@ -559,6 +560,9 @@ ODBCLinker::ODBCLinker(char* connstr_or_name)
}
LinkInfo linfo;
linfo.drivername = NULL;
linfo.password = NULL;
linfo.username = NULL;
int len = strlen(connstr_or_name);
GetDrivername(connstr_or_name, &linfo);
/* atuo commit is the default value */
@ -568,11 +572,13 @@ ODBCLinker::ODBCLinker(char* connstr_or_name)
securec_check(rc, "\0", "\0");
if ((error != SQL_SUCCESS) && (error != SQL_SUCCESS_WITH_INFO)) {
SQLCHAR sqlcode[NAX_ERR_MSG_LEN];
SQLGetDiagField(SQL_HANDLE_DBC, this->connHandle, 1, SQL_DIAG_MESSAGE_TEXT, &sqlcode, NAX_ERR_MSG_LEN, NULL);
SQLFreeHandle(SQL_HANDLE_DBC, this->connHandle);
SQLFreeHandle(SQL_HANDLE_ENV, this->envHandle);
ereport(ERROR,
(errcode(ERRCODE_CONNECTION_FAILURE),
errmsg("Error SQLConnect")));
errmsg("Error SQLConnect\n%s", sqlcode)));
}
}
@ -629,9 +635,8 @@ char* ODBCLinker::errorMsg()
if (this->stmt == NULL) {
return NULL;
}
int msgLen = 100;
char* msg = (char*)palloc(sizeof(char) * msgLen);
SQLGetDiagRec(SQL_HANDLE_STMT, this->stmt, 1, NULL, NULL, (SQLCHAR*)msg, 100 ,NULL);
char* msg = (char*)palloc(sizeof(char) * NAX_ERR_MSG_LEN);
SQLGetDiagRec(SQL_HANDLE_STMT, this->stmt, 1, NULL, NULL, (SQLCHAR*)msg, NAX_ERR_MSG_LEN, NULL);
return msg;
}