Skip to content

Commit 05da9e4

Browse files
committed
Cleanup
1 parent 387044d commit 05da9e4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

internal/sql/catalog/catalog.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package catalog
22

33
import (
4-
"fmt"
5-
64
"github.com/sqlc-dev/sqlc/internal/sql/ast"
75
)
86

@@ -54,7 +52,6 @@ func (c *Catalog) Update(stmt ast.Statement, colGen columnGenerator) error {
5452
case *ast.AlterTableStmt:
5553
// alter_table_stmt have objtype which points to table, type or other object types
5654
// currently support only for table and type
57-
fmt.Printf("alter_table_stmt: %+v\n", n.Relkind)
5855
if n.Relkind.IsType() {
5956
err = c.alterCompositeType(n)
6057
} else {

0 commit comments

Comments
 (0)