mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
Merge pull request #28298 from kitaisreal/odbc-connection-holder-fix-dangling-reference
ODBC connection holder fix dangling reference
This commit is contained in:
commit
1a6c2c78c8
@ -6,6 +6,7 @@
|
|||||||
#include <common/BorrowedObjectPool.h>
|
#include <common/BorrowedObjectPool.h>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
|
||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
namespace ErrorCodes
|
namespace ErrorCodes
|
||||||
@ -57,7 +58,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
PoolPtr pool;
|
PoolPtr pool;
|
||||||
ConnectionPtr connection;
|
ConnectionPtr connection;
|
||||||
const String & connection_string;
|
String connection_string;
|
||||||
};
|
};
|
||||||
|
|
||||||
using ConnectionHolderPtr = std::shared_ptr<ConnectionHolder>;
|
using ConnectionHolderPtr = std::shared_ptr<ConnectionHolder>;
|
||||||
|
Loading…
Reference in New Issue
Block a user