mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +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
32 lines
767 B
C++
32 lines
767 B
C++
#if __has_include(<mysql.h>)
|
|
#include <mysql.h>
|
|
#else
|
|
#include <mysql/mysql.h>
|
|
#endif
|
|
|
|
#include <mysqlxx/Connection.h>
|
|
#include <mysqlxx/StoreQueryResult.h>
|
|
|
|
|
|
namespace mysqlxx
|
|
{
|
|
|
|
StoreQueryResult::StoreQueryResult(MYSQL_RES * res_, Connection * conn_, const Query * query_) : ResultBase(res_, conn_, query_)
|
|
{
|
|
UInt64 rows = mysql_num_rows(res);
|
|
UInt32 fields = getNumFields();
|
|
reserve(rows);
|
|
lengths.resize(rows * fields);
|
|
|
|
for (UInt64 i = 0; MYSQL_ROW row = mysql_fetch_row(res); ++i)
|
|
{
|
|
MYSQL_LENGTHS lengths_for_row = mysql_fetch_lengths(res);
|
|
memcpy(&lengths[i * fields], lengths_for_row, sizeof(lengths[0]) * fields);
|
|
|
|
push_back(Row(row, this, &lengths[i * fields]));
|
|
}
|
|
checkError(conn->getDriver());
|
|
}
|
|
|
|
}
|