summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-11-17 14:33:04 +0100
committerErich Eckner <git@eckner.net>2019-11-17 14:33:04 +0100
commitac10b8e433280e12beed034ec03157c36ef84b51 (patch)
treebdf9f7986cbb2e3b565bdc842e65615017ce8107
parent8ea14b8c6bd740bfc69bd4a65eadd7eb3916b48a (diff)
downloadarchweb32-ac10b8e433280e12beed034ec03157c36ef84b51.tar.xz
buildmaster/build-list.php: we can hand out packages multiple times - the column of the temporary table must be larger than the original column
-rw-r--r--buildmaster/build-list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildmaster/build-list.php b/buildmaster/build-list.php
index 8e48c17..7258a47 100644
--- a/buildmaster/build-list.php
+++ b/buildmaster/build-list.php
@@ -497,7 +497,7 @@ mysql_run_query(
mysql_run_query(
'CREATE TEMPORARY TABLE `bs_q` (' .
'`currently_building` BIGINT,' .
- '`build_slave` VARCHAR(32),' .
+ '`build_slave` VARCHAR(128),' .
'PRIMARY KEY `currently_building`(`currently_building`)' .
')'
);