BadgerDB
|
00001 00007 #pragma once 00008 00009 #include "catalog.h" 00010 00011 namespace badgerdb 00012 { 00016 class Updates 00017 { 00018 public: 00025 static void Insert(const std::string & relation, // the relation into which to insert the tuple 00026 int attrCnt, // number of attributes in the attrList 00027 const attrInfo attrList[]); // the attribute list (with the attribute name and value) for the new record to be inserted 00028 00029 }; 00030 00031 }