We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5840b commit a6656feCopy full SHA for a6656fe
internal/db/db.go
@@ -131,11 +131,6 @@ func (db *Db) ExecuteStatements(statementsString string) (StatementsResult, erro
131
}
132
133
func (db *Db) executeQueriesAndPopulateChannel(queries []string, statementResultCh chan StatementResult) {
134
- if strings.HasPrefix(db.urlScheme, "http") {
135
- query := strings.Join(queries, "; ")
136
- db.executeQuery(query, statementResultCh)
137
- return
138
- }
139
for _, query := range queries {
140
if shouldContinue := db.executeQuery(query, statementResultCh); !shouldContinue {
141
return
0 commit comments