You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
302 B
18 lines
302 B
2 years ago
|
#pragma once
|
||
|
|
||
|
#include "libaquery.h"
|
||
|
#include "aggregations.h"
|
||
|
#include <iostream>
|
||
|
#include <chrono>
|
||
|
#include "monetdb_conn.h"
|
||
|
#include "monetdbe.h"
|
||
|
#include "threading.h"
|
||
|
#include "../csv.h"
|
||
|
#ifdef _WIN32
|
||
|
#include "winhelper.h"
|
||
|
#else
|
||
|
#include <dlfcn.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <sys/mman.h>
|
||
|
#endif
|