You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: seatunnel-e2e/seatunnel-transforms-v2-e2e/seatunnel-transforms-v2-e2e-part-2/src/test/resources/sql_transform/explode_transform.conf
Copy file name to clipboardExpand all lines: seatunnel-e2e/seatunnel-transforms-v2-e2e/seatunnel-transforms-v2-e2e-part-2/src/test/resources/sql_transform/explode_transform_without_outer.conf
Copy file name to clipboardExpand all lines: seatunnel-e2e/seatunnel-transforms-v2-e2e/seatunnel-transforms-v2-e2e-part-2/src/test/resources/sql_transform/func_array.conf
+65-8
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
###### This config file is a demonstration of streaming processing in seatunnel config
19
19
######
20
20
21
+
21
22
env {
22
23
job.mode = "BATCH"
23
24
parallelism = 1
@@ -30,6 +31,7 @@ source {
30
31
fields {
31
32
pk_id = string
32
33
name = string
34
+
id = int
33
35
}
34
36
primaryKey {
35
37
name = "pk_id"
@@ -39,22 +41,33 @@ source {
39
41
rows = [
40
42
{
41
43
kind = INSERT
42
-
fields = ["id001", "zhangsan,zhangsan"]
44
+
fields = ["id001", "zhangsan,zhangsan",123]
43
45
}
44
46
]
45
47
}
46
48
}
47
49
48
50
transform {
49
51
Sql {
50
-
plugin_input = "fake"
51
-
plugin_output = "fake1"
52
-
query = "SELECT *,Array('c_1','c_2') as c_array FROM dual "
0 commit comments