File tree Expand file tree Collapse file tree
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/table Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1015,8 +1015,8 @@ void testBulkInsertNonPartitionedTable() {
10151015 void testAppendWrite (boolean clustering ) {
10161016 TableEnvironment tableEnv = streamTableEnv ;
10171017 // csv source
1018- String csvSourceDDL = TestConfigurations .getCsvSourceDDL ( "csv_source" , "test_source_5.data " );
1019- tableEnv .executeSql (csvSourceDDL );
1018+ String sourceDDL = TestConfigurations .getFileSourceDDL ( "source " );
1019+ tableEnv .executeSql (sourceDDL );
10201020
10211021 String hoodieTableDDL = sql ("hoodie_sink" )
10221022 .option (FlinkOptions .PATH , tempFile .getAbsolutePath ())
@@ -1025,7 +1025,7 @@ void testAppendWrite(boolean clustering) {
10251025 .end ();
10261026 tableEnv .executeSql (hoodieTableDDL );
10271027
1028- String insertInto = "insert into hoodie_sink select * from csv_source " ;
1028+ String insertInto = "insert into hoodie_sink select * from source " ;
10291029 execInsertSql (tableEnv , insertInto );
10301030
10311031 List <Row > result1 = CollectionUtil .iterableToList (
You can’t perform that action at this time.
0 commit comments