You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-05 15:41:14 +03:00
MCOL-939 Moved columnstore version information to columnstoreversion.h for 1.1.X
This commit is contained in:
@ -141,7 +141,7 @@ using namespace logging;
|
||||
using namespace funcexp;
|
||||
|
||||
#include "installdir.h"
|
||||
#include "versionnumber.h"
|
||||
#include "columnstoreversion.h"
|
||||
|
||||
namespace cal_impl_if
|
||||
{
|
||||
@ -2286,7 +2286,7 @@ const char* calgetversion(UDF_INIT* initid, UDF_ARGS* args,
|
||||
char* result, unsigned long* length,
|
||||
char* is_null, char* error)
|
||||
{
|
||||
string version(idb_version);
|
||||
string version(columnstore_version);
|
||||
*length = version.size();
|
||||
memcpy(result, version.c_str(), *length);
|
||||
return result;
|
||||
|
Reference in New Issue
Block a user