Index: data/files/tiny_a =================================================================== --- data/files/tiny_a (revision 0) +++ data/files/tiny_a (working copy) @@ -0,0 +1 @@ +103200920268924913312 Property changes on: data/files/tiny_a ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: data/files/tiny_b =================================================================== --- data/files/tiny_b (revision 0) +++ data/files/tiny_b (working copy) @@ -0,0 +1,2 @@ +10320092002467760023374853555556606672767778808187889090919092971001031041071081081091101131131131131131131141161161161171161171171171151151171171171211201311311311251251241241281281311311321331341341341342626\N\N\N\N116 +1032009202689249102591061311421592443203984174335536167108269179711046105110931112114212151220122612321267136415491646194821702272232524332534285229252992311932073279332334123637364536343450347336383688373637583812386238733868388341184134412741704216\N\N\N\N3139 Property changes on: data/files/tiny_b ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: ql/src/test/queries/clientpositive/tstIntArrayJoin.q =================================================================== --- ql/src/test/queries/clientpositive/tstIntArrayJoin.q (revision 0) +++ ql/src/test/queries/clientpositive/tstIntArrayJoin.q (working copy) @@ -0,0 +1,10 @@ +create table tinyA(a bigint, b bigint) stored as textfile; +create table tinyB(a bigint, bList array) stored as textfile; + +load data local inpath '../data/files/tiny_a' into table tinyA; +load data local inpath '../data/files/tiny_b' into table tinyB; + +select * from tinyA; +select * from tinyB; + +select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = tinyA.a; \ No newline at end of file