Kùzu C++ API
Loading...
Searching...
No Matches
alter_type.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
5namespace kuzu {
6namespace common {
7
8enum class AlterType : uint8_t {
9 RENAME_TABLE = 0,
10
11 ADD_PROPERTY = 10,
12 DROP_PROPERTY = 11,
13 RENAME_PROPERTY = 12,
14 COMMENT = 201,
15};
16
17} // namespace common
18} // namespace kuzu
AlterType
Definition alter_type.h:8
Definition alter_type.h:5