We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a0077c commit 3f438f2Copy full SHA for 3f438f2
aeon_ddl.proto
@@ -23,6 +23,8 @@ message CreateSpaceRequest {
23
repeated FieldDef format = 2;
24
// Sorting key definition (indexed fields).
25
repeated KeyPartDef key_def = 3;
26
+ // Storage engine.
27
+ Engine engine = 4;
28
}
29
30
message CreateSpaceResponse {
aeon_schema.proto
@@ -31,6 +31,12 @@ message Operation {
31
Tuple tuple = 3;
32
33
34
+// Storage engine.
35
+enum Engine {
36
+ ENGINE_MEMTX = 0;
37
+ ENGINE_VINYL = 1;
38
+}
39
+
40
// Type a space field can have.
41
enum FieldType {
42
FIELD_TYPE_UNSPECIFIED = 0;
0 commit comments