Skip to content
Snippets Groups Projects
Commit 0f613571 authored by brinn's avatar brinn
Browse files

change: naming convention for mass-upload files from separator :: to =, since...

change: naming convention for mass-upload files from separator :: to =, since the old one created problems with Windows

SVN: 834
parent 29ffe2d4
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ import java.io.File;
/**
* Classes that implement this interface encapsulate mass uploading of tabular files to the database. The files to be
* processed by implementations of this class are supposed to be <code>csv</code> files that can be uploaded to
* exactly one table. They need to follow the naming convention <code>orderSpecifier::tableName.csv</code>. Here the
* exactly one table. They need to follow the naming convention <code>orderSpecifier=tableName.csv</code>. Here the
* order specifier ensures that the dependency is right while the table name is the name of the table to upload the data
* to.
*
......@@ -34,7 +34,7 @@ public interface IMassUploader
* Upload the data from file <var>massUploadFile</var> to the database.
*
* @param massUploadFile File to upload to the database, following the naming convention
* <code>orderSpecifier::tableName.csv</code>.
* <code>orderSpecifier=tableName.csv</code>.
*/
public void performMassUpload(File massUploadFile);
......
......@@ -57,7 +57,7 @@ public class PostgreSQLMassUploader implements IMassUploader
try
{
final CopyManager copyManager = getPGConnection().getCopyAPI();
final String[] splitName = StringUtils.split(massUploadFile.getName(), "::");
final String[] splitName = StringUtils.split(massUploadFile.getName(), "=");
assert splitName.length == 2;
final String tableNameWithExtension = splitName[1];
assert tableNameWithExtension.endsWith(".csv");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment