X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/3207fe934ef25ea7980d123c83c2711cf8964646..f0e54f5c656399310da44b5d226931f7e150f19d:/tools/word.pg.sql diff --git a/tools/word.pg.sql b/tools/word.pg.sql index 4e5aca6..a142ebc 100644 --- a/tools/word.pg.sql +++ b/tools/word.pg.sql @@ -56,7 +56,7 @@ COMMENT ON COLUMN kind.truth IS 'link validity ranging from 0 (never) to 10 CREATE OR REPLACE FUNCTION exportform(word) RETURNS text AS $$ SELECT concat( - $1.id, ':', + coalesce($1.ref, $1.id), ':', $1.prio, CASE WHEN $1.cover THEN 'c' ELSE '' END, ':', array_to_string($1.form || $1.alt, '/') );