summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-03 15:01:19 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-03 15:01:19 +0100
commita249a006e711f28d03f32b13e595d3a1f8830d7d (patch)
treec9e30c241b29f536b8a211ba41ebe4adcfa71465 /bin
parentd911df04a61b40383dfff0487582f5adca4fd90a (diff)
downloadjenkins.debian.net-a249a006e711f28d03f32b13e595d3a1f8830d7d.tar.xz
more nullvalue found
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_graphs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh
index 66899b97..e7d852d3 100755
--- a/bin/reproducible_html_graphs.sh
+++ b/bin/reproducible_html_graphs.sh
@@ -231,7 +231,7 @@ redo_png() {
# FIXME: also generate this query for stretch and buster and beyond :)
sqlite3 -init ${INIT} --nullvalue 0 -csv ${PACKAGES_DB} "select s.datum,
s.reproducible as 'reproducible_sid',
- COALESCE((SELECT e.reproducible FROM stats_pkg_state AS e where s.datum=e.datum and suite='experimental'),'') as 'reproducible_experimental',
+ COALESCE((SELECT e.reproducible FROM stats_pkg_state AS e where s.datum=e.datum and suite='experimental'),0) as 'reproducible_experimental',
s.unreproducible as 'unreproducible_sid',
(SELECT e.unreproducible FROM stats_pkg_state e WHERE s.datum=e.datum AND suite='experimental') AS unreproducible_experimental,
s.FTBFS as 'FTBFS_sid',