Skip to content

Commit 2a1276c

Browse files
authored
engine: Create engine package (sqlc-dev#556)
This package contains the different SQL database engines. The dolphin package will be renamed mysql once the old mysql package is deleted.
1 parent e1f90aa commit 2a1276c

26 files changed

Lines changed: 6 additions & 6 deletions

internal/compiler/engine.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"fmt"
55

66
"github.com/kyleconroy/sqlc/internal/config"
7-
"github.com/kyleconroy/sqlc/internal/dolphin"
7+
"github.com/kyleconroy/sqlc/internal/engine/dolphin"
8+
"github.com/kyleconroy/sqlc/internal/engine/postgresql"
9+
"github.com/kyleconroy/sqlc/internal/engine/sqlite"
810
"github.com/kyleconroy/sqlc/internal/opts"
9-
"github.com/kyleconroy/sqlc/internal/postgresql"
1011
"github.com/kyleconroy/sqlc/internal/sql/catalog"
11-
"github.com/kyleconroy/sqlc/internal/sqlite"
1212
)
1313

1414
// The Engine type only exists as a compatibility shim between the old dinosql
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)