Skip to content

Commit 1b2e012

Browse files
authored
fix(outputs.sql): Fix insert into ClickHouse (#16472)
1 parent 271352a commit 1b2e012

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/outputs/sql/sql.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ func (p *SQL) generateInsert(tablename string, columns []string) string {
187187
}
188188
}
189189

190-
return fmt.Sprintf("INSERT INTO %s(%s) VALUES(%s)",
190+
return fmt.Sprintf("INSERT INTO %s (%s) VALUES(%s)",
191191
quoteIdent(tablename),
192192
strings.Join(quotedColumns, ","),
193193
strings.Join(placeholders, ","))

0 commit comments

Comments
 (0)