Kùzu C++ API
Loading...
Searching...
No Matches
table_type.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <string>
5
6namespace kuzu {
7namespace common {
8
9// TODO(Guodong/Ziyi/Xiyang): Should we remove this and instead use `CatalogEntryType`?
10enum class TableType : uint8_t {
11 UNKNOWN = 0,
12 NODE = 1,
13 REL = 2,
14 RDF = 3,
15 REL_GROUP = 4,
16 FOREIGN = 5,
17};
18
20 static std::string toString(TableType tableType);
21};
22
23} // namespace common
24} // namespace kuzu
TableType
Definition table_type.h:10
Definition alter_type.h:5
Definition table_type.h:19
static std::string toString(TableType tableType)