Skip to content

Commit c2295de

Browse files
committed
Add ExportOutput action
1 parent 766469e commit c2295de

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

proto/relationalai/lqp/v1/transactions.proto

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ message Read {
144144
WhatIf what_if = 3;
145145
Abort abort = 4;
146146
Export export = 5;
147+
ExportOutput export_output = 6;
147148
}
148149
}
149150

@@ -174,3 +175,16 @@ message Abort {
174175
string name = 1;
175176
RelationId relation_id = 2;
176177
}
178+
179+
message ExportCSVOutput {
180+
ExportCSVSource csv_source = 1;
181+
CSVConfig csv_config = 2;
182+
}
183+
184+
message ExportOutput {
185+
// Supports export formats e.g., CSV and Iceberg, but considered to be part of txn results
186+
oneof export_output {
187+
ExportCSVOutput csv = 1;
188+
}
189+
}
190+

0 commit comments

Comments
 (0)