Skip to content

Commit

Permalink
#1380 changed new column order of window rules (#1565)
Browse files Browse the repository at this point in the history
  • Loading branch information
joohokim1 authored and kaypark-skt committed Mar 5, 2019
1 parent 50c44fe commit 35b6856
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -179,7 +179,7 @@ public List<Row> gather(DataFrame prevDf, List<Object> preparedArgs, int offset,
if(!args.isEmpty()) {
String refColName = args.get(0).toString();
newColName = newColName + "_" + refColName;
newColPosition = getColnoByColName(refColName) + 1;
newColPosition = getColnoByColName(refColName) + i;
}

//column type
Expand Down

0 comments on commit 35b6856

Please sign in to comment.