mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
b7ef5a699c
* Get rid of non-existent vectorclass * Move FastMemcpy to contribs * Restore comments * Disable FastMemcpy on non-Linux * Fix cmake file * Don't build FastMemcpy for ARM64 * Replace FastMemcpy submodule with its contents * Fix cmake file * Move widechar_width to contrib/ * Move sumbur to contrib/ * Move consistent-hashing to contrib/ * Fix UBSan tests
26 lines
441 B
C++
26 lines
441 B
C++
#if __has_include(<mysql.h>)
|
|
#include <mysql.h>
|
|
#else
|
|
#include <mysql/mysql.h>
|
|
#endif
|
|
|
|
#include <mysqlxx/Connection.h>
|
|
#include <mysqlxx/ResultBase.h>
|
|
|
|
|
|
namespace mysqlxx
|
|
{
|
|
|
|
ResultBase::ResultBase(MYSQL_RES * res_, Connection * conn_, const Query * query_) : res(res_), conn(conn_), query(query_)
|
|
{
|
|
fields = mysql_fetch_fields(res);
|
|
num_fields = mysql_num_fields(res);
|
|
}
|
|
|
|
ResultBase::~ResultBase()
|
|
{
|
|
mysql_free_result(res);
|
|
}
|
|
|
|
}
|