com.exasol.spark.common.AbstractImportQueryGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-connector-common-java Show documentation
Show all versions of spark-connector-common-java Show documentation
An Exasol common library for Apache Spark connectors
The newest version!
package com.exasol.spark.common;
/**
* An abstract generator for Exasol {@code IMPORT} queries that access {@code
* CSV} files on intermediate cloud storage systems.
*
* @see Exasol Import
*/
public abstract class AbstractImportQueryGenerator implements QueryGenerator {
private static final String IMPORT_QUERY_FOOTER = "SKIP = 1";
@Override
public String getFooter() {
return IMPORT_QUERY_FOOTER;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy