From: Joerg Jaspert Date: Sun, 12 Aug 2012 12:49:21 +0000 (+0200) Subject: Merge remote-tracking branch 'ansgar/pu/multiarchive-2' X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=54903526ea5f9cd14103bcd3d312683e004c94d4;hp=e08cad76c8f65aed94a30219e2d6dcafa816ba2a;p=dak.git Merge remote-tracking branch 'ansgar/pu/multiarchive-2' * ansgar/pu/multiarchive-2: dak/dakdb/update79.py: Use || operator instead of CONCAT to make postgresql 9.0 happy Signed-off-by: Joerg Jaspert --- diff --git a/dak/dakdb/update79.py b/dak/dakdb/update79.py index 67ad01a6..954f393d 100644 --- a/dak/dakdb/update79.py +++ b/dak/dakdb/update79.py @@ -47,7 +47,7 @@ def do_update(self): CREATE OR REPLACE VIEW world."files-1" AS SELECT files.id AS id, - CONCAT(component.name, '/', files.filename) AS filename, + component.name || '/' || files.filename AS filename, files.size AS size, files.md5sum AS md5sum, files.sha1sum AS sha1sum,