Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MyriaL support for SplitExpression and SequenceExpression #537

Merged
merged 3 commits into from
Sep 9, 2016

Conversation

senderista
Copy link
Contributor

These are currently the only built-in flatmap expressions in MyriaX, so can be supported in RACO without syntax support for MyriaL flatmap UDFs. Tested in MyriaWeb with the following queries:

R = load("https://s3-us-west-2.amazonaws.com/uwdb/sampleData/tab.txt",
csv(schema(index:int, intlist:string), delimiter="\t"));
store(R, flatmap_input, [index, intlist]);
S = scan("public:adhoc:flatmap_input");
T = [from S emit S.index, S.intlist, split(S.intlist, ",")];
store(T, flatmap_output, [$0, $1, $2]);
T = [from S emit S.index, S.intlist, sequence(S.index)];
store(T, sequence_output, [$0, $1, $2]);

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.05%) to 91.829% when pulling 61340fc on flatmap into 0231c09 on master.

@senderista senderista assigned shrjain and unassigned bmyerz Sep 6, 2016
@shrjain
Copy link

shrjain commented Sep 7, 2016

LGTM

@shrjain shrjain closed this Sep 7, 2016
@shrjain shrjain reopened this Sep 7, 2016
@coveralls
Copy link

Coverage Status

Coverage decreased (-0.05%) to 91.829% when pulling 61340fc on flatmap into 0231c09 on master.

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.1%) to 91.756% when pulling 335c8ca on flatmap into 0231c09 on master.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants