Skip to content

Commit 2c2c581

Browse files
fix: Remove trailing whitespace from README-template.md
1 parent a6a8f69 commit 2c2c581

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ df.writeStream \
375375

376376
#### Schema Behavior on Overwrite
377377

378-
When using `SaveMode.Overwrite` (`.mode("overwrite")`), the connector **preserves the existing table's schema**.
378+
When using `SaveMode.Overwrite` (`.mode("overwrite")`), the connector **preserves the existing table's schema**.
379379
The data is truncated, but column types, descriptions, and policy tags are retained.
380380

381381
```
@@ -386,7 +386,7 @@ df.write \
386386
.save("dataset.table")
387387
```
388388

389-
**Important:** If your DataFrame has a different schema than the existing table (e.g., changing a column from
389+
**Important:** If your DataFrame has a different schema than the existing table (e.g., changing a column from
390390
`INTEGER` to `DOUBLE`), the write will fail with a type mismatch error. To change the schema, either:
391391
- Drop the table before overwriting
392392
- Use BigQuery DDL to alter the table schema first

0 commit comments

Comments
 (0)