mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
61059c3d9a
* Try fix version generate * Macos: allow build with mariadb-connector-c
28 lines
508 B
C++
28 lines
508 B
C++
#if __has_include(<mariadb/mysql.h>)
|
|
#include <mariadb/mysql.h>
|
|
#else
|
|
#include <mysql/mysql.h>
|
|
#endif
|
|
|
|
#include <mysqlxx/Connection.h>
|
|
#include <mysqlxx/UseQueryResult.h>
|
|
|
|
|
|
namespace mysqlxx
|
|
{
|
|
|
|
UseQueryResult::UseQueryResult(MYSQL_RES * res_, Connection * conn_, const Query * query_) : ResultBase(res_, conn_, query_)
|
|
{
|
|
}
|
|
|
|
Row UseQueryResult::fetch()
|
|
{
|
|
MYSQL_ROW row = mysql_fetch_row(res);
|
|
if (!row)
|
|
checkError(conn->getDriver());
|
|
|
|
return Row(row, this, mysql_fetch_lengths(res));
|
|
}
|
|
|
|
}
|