Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Javadoc warning in integration test #2484

Merged
merged 3 commits into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -210,29 +210,59 @@ public void importTable_ForImportedTable_ShouldPutThenGetCorrectly() throws Exec
/** This interface defines test data for running import table related integration tests. */
public interface TestData {

/** Returns true if the table is supported for import, false otherwise */
/**
* Returns true if the table is supported for import, false otherwise
*
* @return true if the table is supported for import, false otherwise
*/
boolean isImportableTable();

/** Returns the table name */
/**
* Returns the table name
*
* @return the table name
*/
String getTableName();

/** Returns the columns for which the data type should be overridden when importing the table */
/**
* Returns the columns for which the data type should be overridden when importing the table
*
* @return the columns for which the data type should be overridden when importing the table
*/
Map<String, DataType> getOverrideColumnsType();

/*
* Returns the expected table metadata of the imported table
* @return the expected table metadata of the imported table
*/
TableMetadata getTableMetadata();

/** Returns a sample Insert operation for the table */
/**
* Returns a sample Insert operation for the table
*
* @param namespace the namespace of the table
* @param table the table name
* @return a sample Insert operation
*/
Insert getInsert(String namespace, String table);

/** Returns a sample Put operation for the table */
/**
* Returns a sample Put operation for the table
*
* @param namespace the namespace of the table
* @param table the table name
* @return a sample Put operation
*/
Put getPut(String namespace, String table);

/**
* Returns a Get operation to retrieve the record inserted with {@link #getPut(String, String)}
* or {@link #getInsert(String, String)}
*
* @param namespace the namespace of the table
* @param table the table name
* @return a Get operation to retrieve the record inserted with {@link #getPut(String, String)}
* or {@link #getInsert(String, String)}
*/
Get getGet(String namespace, String table);
}
Expand Down