- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
@Override public CsvStaticDataDeployer getCsvStaticDataLoader() { if (getIqDataSource().isIqClientLoadSupported()) { LOG.info("Using IQ Client load mechanism for IQ CSV Loads"); IqLoadMode iqLoadMode = SystemUtils.IS_OS_WINDOWS ? IqLoadMode.IQ_CLIENT_WINDOWS : IqLoadMode.IQ_CLIENT; return new IqBulkLoadCsvStaticDataDeployer(this.env, this.getSqlExecutor(), this.getIqDataSource(), this.getDbMetadataManager(), this.env.getPlatform(), iqLoadMode, this.getWorkDir()); } else { LOG.info("Using the default SQL insert/update/delete statements for IQ CSV Loads"); return super.getCsvStaticDataLoader(); } }