// // Created by YuhangQ on 2021/11/1. // #ifndef INVODB_INDEX_H #define INVODB_INDEX_H #include "btree/btree.h" #include "json/json.hpp" class Index { public: void insert(const nlohmann::json& json); private: template void insertElement(T const& key, const int& add) { BTree treeString; BTree treeBool; BTree treeDouble; BTree treeInt; } }; #endif //INVODB_INDEX_H