Skip to content
Merged
Show file tree
Hide file tree
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 @@ -43,6 +43,7 @@ public class TableSchemaJSONLoader {
* bigint, d_date_id varchar"
* @throws Exception
*/
// TODO(BEAM-12160): Fix the warning.
@SuppressWarnings({"rawtypes", "DefaultCharset"})
public static String parseTableSchema(String tableName) throws Exception {
String path = "schemas/" + tableName + ".json";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public class TpcdsSchemas {
* @return A map of all tpcds table schemas with their table names as keys.
* @throws Exception
*/
// TODO(BEAM-12160): Fix the warning.
@SuppressWarnings("StringSplitter")
public static Map<String, Schema> getTpcdsSchemas() throws Exception {
Map<String, Schema> schemaMap = new HashMap<>();
Expand Down