blob: e9821aaca6371f5478d1f99b0c556dbd533327fd [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001use dataverse fuzzy1;
2
3declare type DBLPType as open {
4 id: int32,
5 dblpid: string,
6 title: string,
7 authors: string,
8 misc: string
9}
10
11declare nodegroup group1 on nc1, nc2;
12
13declare dataset DBLP(DBLPType)
ramangrover29669d8f62013-02-11 06:03:32 +000014 primary key id on group1;
vinayakb38b7ca42012-03-05 05:44:15 +000015
16write output to nc1:"/tmp/dblp.adm";
17
18for $paperR in dataset('DBLP')
19where $paperR.id = 1
20for $authorR in word-tokens($paperR.authors)
21for $paperS in dataset('DBLP')
22for $authorS in word-tokens($paperS.authors)
23where $authorR = $authorS
24return {'R': {'dblpid': $paperR.dblpid, 'authors': $paperR.authors},
25 'S': {'dblpid': $paperS.dblpid, 'authors': $paperS.authors}}
26
27/*
28java.lang.RuntimeException: java.lang.IllegalArgumentException
Ian Maxonf18bba22015-08-21 12:35:14 -070029 at org.apache.hyracks.control.nc.runtime.OperatorRunnable.run(OperatorRunnable.java:70)
30 at org.apache.hyracks.control.nc.Stagelet$1.run(Stagelet.java:120)
vinayakb38b7ca42012-03-05 05:44:15 +000031 at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
32 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
33 at java.lang.Thread.run(Thread.java:619)
34Caused by: java.lang.IllegalArgumentException
Ian Maxonf18bba22015-08-21 12:35:14 -070035 at org.apache.hyracks.dataflow.common.data.util.StringUtils.charAt(StringUtils.java:62)
36 at org.apache.asterix.jobgen.data.tagged.AqlSchemalessPrinterFactory$1.print(AqlSchemalessPrinterFactory.java:103)
37 at org.apache.asterix.jobgen.data.tagged.AqlSchemalessPrinterFactory$1.print(AqlSchemalessPrinterFactory.java:112)
38 at org.apache.aqua.runtime.operators.std.PrinterRuntime.printTuple(PrinterRuntime.java:90)
39 at org.apache.aqua.runtime.operators.std.PrinterRuntime.nextFrame(PrinterRuntime.java:58)
40 at org.apache.aqua.runtime.operators.base.AquaMetaOperatorDescriptor$2.nextFrame(AquaMetaOperatorDescriptor.java:123)
41 at org.apache.hyracks.control.nc.runtime.OperatorRunnable.run(OperatorRunnable.java:62)
vinayakb38b7ca42012-03-05 05:44:15 +000042 ... 4 more
43*/