Skip to content

Commit 86037f0

Browse files
GrigoriyPAGazizonoki
authored andcommitted
YQ-4234 added running status for script executions (#19134)
1 parent eba62fd commit 86037f0

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/last_commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8e0f901efb6d5580fe9f5409b4cf761160fb7f24
1+
c4716143afdbf369581b5ab324aee61ef5ee4fc1

include/ydb-cpp-sdk/client/query/query.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ std::string_view StatsModeToString(const EStatsMode statsMode);
4242
enum class EExecStatus {
4343
Unspecified = 0,
4444
Starting = 10,
45+
Running = 15,
4546
Aborted = 20,
4647
Canceled = 30,
4748
Completed = 40,

src/api/protos/ydb_query.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ message ExecuteScriptRequest {
227227
enum ExecStatus {
228228
EXEC_STATUS_UNSPECIFIED = 0;
229229
EXEC_STATUS_STARTING = 10;
230+
EXEC_STATUS_RUNNING = 15;
230231
EXEC_STATUS_ABORTED = 20;
231232
EXEC_STATUS_CANCELLED = 30;
232233
EXEC_STATUS_COMPLETED = 40;

0 commit comments

Comments
 (0)