Kùzu C++ API
Loading...
Searching...
No Matches
catalog_entry_type.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <string>
5
6namespace kuzu {
7namespace catalog {
8
9enum class CatalogEntryType : uint8_t {
10 // Table entries
16 // Macro entries
18 // Function entries
25 // Sequence entries
26 SEQUENCE_ENTRY = 40,
27 // UDT entries
28 TYPE_ENTRY = 41,
29 // Dummy entry
30 DUMMY_ENTRY = 100,
31};
32
34 static std::string toString(CatalogEntryType type);
35};
36
38 static std::string toString(CatalogEntryType type);
39};
40
41} // namespace catalog
42} // namespace kuzu
CatalogEntryType
Definition catalog_entry_type.h:9
Definition alter_type.h:5
Definition catalog_entry_type.h:33
static std::string toString(CatalogEntryType type)
Definition catalog_entry_type.h:37
static std::string toString(CatalogEntryType type)