File tree Expand file tree Collapse file tree 8 files changed +5
-21
lines changed
seatunnel-e2e-common/src/test/java/org/apache/seatunnel/e2e/common/util
seatunnel-transforms-v2-e2e/seatunnel-transforms-v2-udf/src/main/java/org/apache/seatunnel/e2e/transform/udf
seatunnel-transforms-v2/src/main/java/org/apache/seatunnel/transform/sql/zeta Expand file tree Collapse file tree 8 files changed +5
-21
lines changed Original file line number Diff line number Diff line change @@ -221,20 +221,6 @@ public static void copySeaTunnelStarterToContainer(
221
221
MountableFile .forHostPath (transformUdfJarPath ),
222
222
Paths .get (seatunnelHomeInContainer , "lib" , transformUdfJar ).toString ());
223
223
224
- // copy transform-udf
225
- String transformUdfJar = "seatunnel-transforms-v2-udf.jar" ;
226
- Path transformUdfJarPath =
227
- Paths .get (
228
- PROJECT_ROOT_PATH ,
229
- "seatunnel-e2e" ,
230
- "seatunnel-transforms-v2-e2e" ,
231
- "seatunnel-transforms-v2-udf" ,
232
- "target" ,
233
- transformUdfJar );
234
- container .withCopyFileToContainer (
235
- MountableFile .forHostPath (transformUdfJarPath ),
236
- Paths .get (seatunnelHomeInContainer , "lib" , transformUdfJar ).toString ());
237
-
238
224
// copy bin
239
225
final String startBinPath = startModulePath + File .separator + "src/main/bin/" ;
240
226
checkPathExist (startBinPath );
Original file line number Diff line number Diff line change 19
19
20
20
import org .apache .seatunnel .api .table .type .BasicType ;
21
21
import org .apache .seatunnel .api .table .type .SeaTunnelDataType ;
22
- import org .apache .seatunnel .transform .sql .zeta .ZetaUDF ;
22
+ import org .apache .seatunnel .transform .sql .zeta .functions . udf . ZetaUDF ;
23
23
24
24
import com .google .auto .service .AutoService ;
25
25
Original file line number Diff line number Diff line change 22
22
import org .apache .seatunnel .api .table .type .SeaTunnelDataType ;
23
23
import org .apache .seatunnel .api .table .type .SeaTunnelRow ;
24
24
import org .apache .seatunnel .api .table .type .SeaTunnelRowType ;
25
- import org .apache .seatunnel .api .transform .sql .ZetaUDF ;
26
25
import org .apache .seatunnel .common .exception .CommonErrorCodeDeprecated ;
27
26
import org .apache .seatunnel .transform .exception .TransformException ;
28
27
import org .apache .seatunnel .transform .sql .SQLEngine ;
28
+ import org .apache .seatunnel .transform .sql .zeta .functions .udf .ZetaUDF ;
29
29
30
30
import org .apache .commons .collections4 .CollectionUtils ;
31
31
Original file line number Diff line number Diff line change 25
25
import org .apache .seatunnel .api .table .type .SeaTunnelRow ;
26
26
import org .apache .seatunnel .api .table .type .SeaTunnelRowType ;
27
27
import org .apache .seatunnel .api .table .type .SqlType ;
28
- import org .apache .seatunnel .api .transform .sql .ZetaUDF ;
29
28
import org .apache .seatunnel .common .exception .CommonErrorCodeDeprecated ;
30
29
import org .apache .seatunnel .common .exception .SeaTunnelRuntimeException ;
31
30
import org .apache .seatunnel .transform .exception .TransformException ;
34
33
import org .apache .seatunnel .transform .sql .zeta .functions .NumericFunction ;
35
34
import org .apache .seatunnel .transform .sql .zeta .functions .StringFunction ;
36
35
import org .apache .seatunnel .transform .sql .zeta .functions .SystemFunction ;
36
+ import org .apache .seatunnel .transform .sql .zeta .functions .udf .ZetaUDF ;
37
37
38
38
import org .apache .commons .lang3 .ArrayUtils ;
39
39
import org .apache .commons .lang3 .tuple .Pair ;
Original file line number Diff line number Diff line change 26
26
import org .apache .seatunnel .api .table .type .SeaTunnelDataType ;
27
27
import org .apache .seatunnel .api .table .type .SeaTunnelRowType ;
28
28
import org .apache .seatunnel .api .table .type .SqlType ;
29
- import org .apache .seatunnel .api .transform .sql .ZetaUDF ;
30
29
import org .apache .seatunnel .common .exception .CommonErrorCodeDeprecated ;
31
30
import org .apache .seatunnel .transform .exception .TransformException ;
32
31
import org .apache .seatunnel .transform .sql .zeta .functions .ArrayFunction ;
32
+ import org .apache .seatunnel .transform .sql .zeta .functions .udf .ZetaUDF ;
33
33
34
34
import org .apache .commons .collections4 .CollectionUtils ;
35
35
Original file line number Diff line number Diff line change 19
19
20
20
import org .apache .seatunnel .api .table .type .BasicType ;
21
21
import org .apache .seatunnel .api .table .type .SeaTunnelDataType ;
22
- import org .apache .seatunnel .api .transform .sql .ZetaUDF ;
23
22
24
23
import com .google .auto .service .AutoService ;
25
24
Original file line number Diff line number Diff line change 19
19
20
20
import org .apache .seatunnel .api .table .type .BasicType ;
21
21
import org .apache .seatunnel .api .table .type .SeaTunnelDataType ;
22
- import org .apache .seatunnel .api .transform .sql .ZetaUDF ;
23
22
24
23
import com .google .auto .service .AutoService ;
25
24
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- package org .apache .seatunnel .api . transform .sql ;
18
+ package org .apache .seatunnel .transform .sql . zeta . functions . udf ;
19
19
20
20
import org .apache .seatunnel .api .table .type .SeaTunnelDataType ;
21
21
You can’t perform that action at this time.
0 commit comments