Skip to content

Commit 1d19b01

Browse files
Merge pull request #20 from JasonHuang9527/hsuanhs/fix_exe
Fix runtime issue resulting from unnecessary semicolons.
2 parents e713633 + c50e968 commit 1d19b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)