mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
2a7813049e
* Wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Do not use ccache if ccache defined in CMAKE_CXX_COMPILER_LAUNCHER * wip * wip * wip * wip * wip * wip * wip * Config: Allow multiple dictionaries_config * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * clean * wip * clean * clean * wip * clean * clean * wip * wip * clean * clean * clean * clean * clean * Requested changes * Reqested changes * Requested changes * Requested changes * Requested changes * Requested changes * requested changes * Requested changes * Requested changes * requested changes * Requested changes * fix * Requested changes * Requested changes * fix * Requested changes * Requested changes
58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
/// Pure c sample dictionary library
|
|
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef const char * CString;
|
|
|
|
typedef struct
|
|
{
|
|
const uint64_t size;
|
|
const uint64_t * data;
|
|
} ClickHouseLibVectorUInt64;
|
|
|
|
typedef struct
|
|
{
|
|
uint64_t size;
|
|
CString * data;
|
|
} ClickHouseLibCStrings;
|
|
|
|
void * ClickHouseDictionary_v1_loadIds(void * data_ptr, ClickHouseLibCStrings * settings, ClickHouseLibCStrings * columns, ClickHouseLibVectorUInt64 * ids)
|
|
{
|
|
printf("loadIds c lib call ptr=%p size=%" PRIu64 "\n", data_ptr, ids->size);
|
|
return 0;
|
|
}
|
|
|
|
void * ClickHouseDictionary_v1_loadAll(void * data_ptr, ClickHouseLibCStrings * settings, ClickHouseLibCStrings * columns)
|
|
{
|
|
printf("loadAll c lib call ptr=%p \n", data_ptr);
|
|
return 0;
|
|
}
|
|
|
|
void * ClickHouseDictionary_v1_loadKeys(void * data_ptr,
|
|
ClickHouseLibCStrings * settings,
|
|
ClickHouseLibCStrings * columns,
|
|
const ClickHouseLibVectorUInt64 * requested_rows)
|
|
{
|
|
printf("loadKeys c lib call ptr=%p size=%" PRIu64 "\n", data_ptr, requested_rows->size);
|
|
return 0;
|
|
}
|
|
|
|
|
|
void * ClickHouseDictionary_v1_dataAllocate()
|
|
{
|
|
int size = 100;
|
|
void * data_ptr = malloc(size);
|
|
printf("dataAllocate c lib call ptr=%p \n", data_ptr);
|
|
return data_ptr;
|
|
}
|
|
|
|
void ClickHouseDictionary_v1_dataDelete(void * data_ptr)
|
|
{
|
|
printf("dataDelete c lib call ptr=%p \n", data_ptr);
|
|
free(data_ptr);
|
|
return;
|
|
}
|