Skip to content

Commit a4d6e84

Browse files
authored
Merge branch 'customizations/24.3.12' into backports/24.3/72190-prefer_locahost_replica-in-parallel_distributed_insert_select
2 parents e5732ec + b88b433 commit a4d6e84

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/release_branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on: # yamllint disable-line rule:truthy
2323
- prereleased
2424
push:
2525
branches:
26-
- 'releases/24.3**'
26+
- '**/24.3*'
2727
tags:
2828
- '*'
2929
workflow_dispatch:

src/Interpreters/DDLWorker.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ namespace ErrorCodes
6464
extern const int CANNOT_ALLOCATE_MEMORY;
6565
extern const int MEMORY_LIMIT_EXCEEDED;
6666
extern const int NOT_IMPLEMENTED;
67+
extern const int TOO_MANY_SIMULTANEOUS_QUERIES;
6768
}
6869

6970
constexpr const char * TASK_PROCESSED_OUT_REASON = "Task has been already processed";
@@ -523,6 +524,7 @@ bool DDLWorker::tryExecuteQuery(DDLTaskBase & task, const ZooKeeperPtr & zookeep
523524
e.code() != ErrorCodes::TABLE_IS_READ_ONLY &&
524525
e.code() != ErrorCodes::CANNOT_ASSIGN_ALTER &&
525526
e.code() != ErrorCodes::CANNOT_ALLOCATE_MEMORY &&
527+
e.code() != ErrorCodes::TOO_MANY_SIMULTANEOUS_QUERIES &&
526528
e.code() != ErrorCodes::MEMORY_LIMIT_EXCEEDED;
527529
return no_sense_to_retry;
528530
}

0 commit comments

Comments
 (0)