]> granicus.if.org Git - jq/commitdiff
join/1: respect empty strings (fix #668)
authorNicolas Williams <nico@cryptonector.com>
Wed, 14 Jan 2015 00:57:35 +0000 (18:57 -0600)
committerNicolas Williams <nico@cryptonector.com>
Wed, 14 Jan 2015 07:32:25 +0000 (01:32 -0600)
builtin.c
tests/all.test

index 3a7a89c7929e2682c7a6ba9185b88a035b17047d..a9c64d8e035698565311c17304babb549ccdebe4 100644 (file)
--- a/builtin.c
+++ b/builtin.c
@@ -1065,7 +1065,7 @@ static const char* const jq_builtins[] = {
   "def scalars: select(. == null or . == true or . == false or type == \"number\" or type == \"string\");",
   "def scalars_or_empty: select(. == null or . == true or . == false or type == \"number\" or type == \"string\" or ((type==\"array\" or type==\"object\") and length==0));",
   "def leaf_paths: paths(scalars);",
-  "def join($x): reduce .[] as $i (\"\"; . + (if . == \"\" then $i else $x + $i end));",
+  "def join($x): reduce .[] as $i (null; (.//\"\") + (if . == null then $i else $x + $i end));",
   "def flatten: reduce .[] as $i ([]; if $i | type == \"array\" then . + ($i | flatten) else . + [$i] end);",
   "def flatten($x): reduce .[] as $i ([]; if $i | type == \"array\" and $x > 0 then . + ($i | flatten($x-1)) else . + [$i] end);",
   "def range($x): range(0;$x);",
index e412c6267ada69584443dc8b444bbcec44d9d617..e0fac8dd0d4d3dd007e8733c949ec9756e8185d7 100644 (file)
@@ -327,6 +327,10 @@ join(",","/")
 "a,b,c,d"
 "a/b/c/d"
 
+[.[]|join("a")]
+[[""],["",""],["","",""]]
+["","a","aa"]
+
 # Same check for flatten/1
 flatten(-1,3,2,1)
 [0, [1], [[2]], [[[3]]]]