Skip to content

Commit

Permalink
0003229: Add Data Loader for Apache Ignite
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmind-josh committed Aug 21, 2017
1 parent 5ba1e48 commit 9069c71
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -61,7 +61,7 @@ public IDataWriter getDataWriter(String sourceNodeId, ISymmetricDialect symmetri
DataSource dataSource = BasicDataSourceFactory.create(properties, SecurityServiceFactory.create(SecurityServiceType.CLIENT, properties));
GenericJdbcPlatform platform = new GenericJdbcPlatform(dataSource, new SqlTemplateSettings());
platform.setName(parameterService.getString("jdbc.alias"));
platform.getDatabaseInfo().setNotNullColumnsSupported(parameterService.is("jdbc." + ParameterConstants.CREATE_TABLE_NOT_NULL_COLUMNS));
platform.getDatabaseInfo().setNotNullColumnsSupported(parameterService.is("jdbc." + ParameterConstants.CREATE_TABLE_NOT_NULL_COLUMNS, true));

JdbcDatabaseWriter writer = new JdbcDatabaseWriter(platform);
writer.setTablePrefix(engine.getTablePrefix());
Expand Down

0 comments on commit 9069c71

Please sign in to comment.