forked from alibaba/DataX
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make getWriterDataSourceFactoryGetter avoid to get reader dbFactoryId
- Loading branch information
1 parent
04a485b
commit b2983c6
Showing
2 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
|
||
import com.qlangtech.tis.datax.IDataXNameAware; | ||
import com.qlangtech.tis.plugin.StoreResourceType; | ||
import com.qlangtech.tis.plugin.ds.DBIdentity; | ||
|
||
/** | ||
* @author: 百岁([email protected]) | ||
|
@@ -11,12 +10,12 @@ | |
public class DataXResourceName { | ||
private final IDataXNameAware name; | ||
public final StoreResourceType resType; | ||
public final DBIdentity dbFactoryId; | ||
// public final DBIdentity dbFactoryId; | ||
|
||
public DataXResourceName(IDataXNameAware name, StoreResourceType resType, DBIdentity dbFactoryId) { | ||
public DataXResourceName(IDataXNameAware name, StoreResourceType resType) { | ||
this.name = name; | ||
this.resType = resType; | ||
this.dbFactoryId = dbFactoryId; | ||
// this.dbFactoryId = dbFactoryId; | ||
} | ||
|
||
public String getDataXName() { | ||
|