Skip to content

Commit c50e968

Browse files
Fix runtime issue resulting from unnecessary semicolons.
1 parent e713633 commit c50e968

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

schema_converter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@ func main() {
257257
log.Printf("[Skipping non-CREATE TABLE statement]\n")
258258
} else {
259259
log.Printf("[Converted Spanner statement]\n%s\n", spannerCreateTableStmt)
260+
spannerCreateTableStmts = append(spannerCreateTableStmts, spannerCreateTableStmt)
260261
}
261262
log.Printf("----------------------------------------------")
262-
spannerCreateTableStmts = append(spannerCreateTableStmts, spannerCreateTableStmt)
263263
}
264264

265265
outputFile := "schema.txt"

0 commit comments

Comments
 (0)