Repository: apex-malhar Updated Branches: refs/heads/master 8e44a9cab -> 59b458864
Add username/password config to jdbc operator test. Project: http://git-wip-us.apache.org/repos/asf/apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/apex-malhar/commit/59b45886 Tree: http://git-wip-us.apache.org/repos/asf/apex-malhar/tree/59b45886 Diff: http://git-wip-us.apache.org/repos/asf/apex-malhar/diff/59b45886 Branch: refs/heads/master Commit: 59b458864ada5895d065b6deabb62eb2918f91ec Parents: 8e44a9c Author: Thomas Weise <[email protected]> Authored: Sun May 21 21:47:55 2017 -0700 Committer: Thomas Weise <[email protected]> Committed: Fri May 26 18:52:21 2017 -0700 ---------------------------------------------------------------------- library/src/test/resources/JdbcProperties.xml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/apex-malhar/blob/59b45886/library/src/test/resources/JdbcProperties.xml ---------------------------------------------------------------------- diff --git a/library/src/test/resources/JdbcProperties.xml b/library/src/test/resources/JdbcProperties.xml index 431c113..f135b64 100644 --- a/library/src/test/resources/JdbcProperties.xml +++ b/library/src/test/resources/JdbcProperties.xml @@ -177,8 +177,15 @@ </value> </property> + <!-- following properties serve as examples, they can also be omitted for the test --> + <property> + <name>dt.operator.JdbcPOJOInput.prop.store.connectionProperties(user)</name> + <value>sa</value> + </property> - - + <property> + <name>dt.operator.JdbcPOJOInput.prop.store.connectionProperties(password)</name> + <value></value> + </property> </configuration>
