-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappend.txt
56 lines (45 loc) · 1.3 KB
/
append.txt
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
================================================================================
Append
================================================================================
from employees_1
append employees_2
--------------------------------------------------------------------------------
(program
(pipeline
(from
(keyword_from)
(identifier))
(transforms
(append
(keyword_append)
(identifier)))))
================================================================================
Remove
================================================================================
from employees_1
append employees_2
--------------------------------------------------------------------------------
(program
(pipeline
(from
(keyword_from)
(identifier))
(transforms
(append
(keyword_append)
(identifier)))))
================================================================================
Intersect
================================================================================
from employees_1
intersect employees_2
--------------------------------------------------------------------------------
(program
(pipeline
(from
(keyword_from)
(identifier))
(transforms
(append
(keyword_intersect)
(identifier)))))