Skip to content

Commit 1f8e7b8

Browse files
committed
refactor(sqlc-gen): prefix AioSQLite functions (feature/sqlite3)
1 parent 150f373 commit 1f8e7b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/codegen/drivers/aiosqlite.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
const AioSQLiteConn = "aiosqlite.Connection"
1212

13-
func BuildPyQueryFunc(query *core.Query, body *builders.IndentStringBuilder, argType string, retType string, isClass bool) error {
13+
func AioSQLiteBuildPyQueryFunc(query *core.Query, body *builders.IndentStringBuilder, argType string, retType string, isClass bool) error {
1414
indentLevel := 0
1515
params := fmt.Sprintf("conn: %s", AioSQLiteConn)
1616
conn := "conn"
@@ -132,7 +132,7 @@ func BuildPyQueryFunc(query *core.Query, body *builders.IndentStringBuilder, arg
132132
return nil
133133
}
134134

135-
func AcceptedDriverCMDs() []string {
135+
func AioSQLiteAcceptedDriverCMDs() []string {
136136
return []string{
137137
metadata.CmdExec,
138138
metadata.CmdExecResult,

0 commit comments

Comments
 (0)