Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
remove debug
  • Loading branch information
kyleconroy committed Oct 12, 2023
commit f718468d43a93e97f135a59048f316ed35466b10
2 changes: 0 additions & 2 deletions internal/compiler/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (

"github.com/sqlc-dev/sqlc/internal/analyzer"
"github.com/sqlc-dev/sqlc/internal/config"
"github.com/sqlc-dev/sqlc/internal/debug"
"github.com/sqlc-dev/sqlc/internal/engine/dolphin"
"github.com/sqlc-dev/sqlc/internal/engine/postgresql"
pganalyze "github.com/sqlc-dev/sqlc/internal/engine/postgresql/analyzer"
Expand Down Expand Up @@ -51,7 +50,6 @@ func NewCompiler(conf config.SQL, combo config.CombinedSettings) (*Compiler, err
c.parser = postgresql.NewParser()
c.catalog = postgresql.NewCatalog()
if conf.Database != nil {
debug.Dump(conf)
if conf.Analyzer.Database == nil || *conf.Analyzer.Database {
c.analyzer = pganalyze.New(c.client, *conf.Database)
}
Expand Down