-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathexample.json
More file actions
98 lines (98 loc) · 2.46 KB
/
example.json
File metadata and controls
98 lines (98 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"help" : [ "LogicalProject(EXPR$0=[fund($1)])\n LogicalJoin(condition=[=(-($0, $2), 0)], joinType=[inner])\n LogicalTableScan(table=[[Qed, dept]])\n LogicalAggregate(group=[{0}])\n LogicalTableScan(table=[[Qed, emp]])\n", "LogicalProject(EXPR$0=[fund($1)])\n LogicalFilter(condition=[IN($0, {\nLogicalTableScan(table=[[Qed, emp]])\n})])\n LogicalTableScan(table=[[Qed, dept]])\n" ],
"schemas" : [ {
"types" : [ "INTEGER", "VARCHAR" ],
"nullable" : [ false, true ],
"name" : "dept",
"guaranteed" : [ ],
"fields" : [ "deptno", "dname" ],
"key" : [ [ 0 ] ]
}, {
"types" : [ "INTEGER" ],
"nullable" : [ true ],
"name" : "emp",
"guaranteed" : [ ],
"fields" : [ "deptno" ],
"key" : [ ]
} ],
"queries" : [ {
"project" : {
"source" : {
"join" : {
"condition" : {
"type" : "BOOLEAN",
"operand" : [ {
"type" : "INTEGER",
"operand" : [ {
"column" : 0,
"type" : "INTEGER"
}, {
"column" : 2,
"type" : "INTEGER"
} ],
"operator" : "-"
}, {
"type" : "INTEGER",
"operand" : [ ],
"operator" : "0"
} ],
"operator" : "="
},
"left" : {
"scan" : 0
},
"kind" : "INNER",
"right" : {
"group" : {
"keys" : [ {
"column" : 0,
"type" : "INTEGER"
} ],
"function" : [ ],
"source" : {
"scan" : 1
}
}
}
}
},
"target" : [ {
"type" : "REAL",
"operand" : [ {
"column" : 1,
"type" : "VARCHAR"
} ],
"operator" : "fund"
} ]
}
}, {
"project" : {
"source" : {
"filter" : {
"condition" : {
"query" : {
"scan" : 1
},
"type" : "BOOLEAN",
"operand" : [ {
"column" : 0,
"type" : "INTEGER"
} ],
"operator" : "IN"
},
"source" : {
"scan" : 0
}
}
},
"target" : [ {
"type" : "REAL",
"operand" : [ {
"column" : 1,
"type" : "VARCHAR"
} ],
"operator" : "fund"
} ]
}
} ]
}