Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
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 @@ -45,7 +45,7 @@ public static void loadCsvFromGcs(String datasetName, String tableName, String s
Table table = bigquery.getTable(datasetName, tableName);
Job loadJob = table.load(FormatOptions.csv(), sourceUri);

// Load data from a GCS parquet file into the table
// Load data from a GCS CSV file into the table
// Blocks until this load table job completes its execution, either failing or succeeding.
Job completedJob = loadJob.waitFor();

Expand Down