We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8eb51b commit 1ded578Copy full SHA for 1ded578
1 file changed
insert.go
@@ -242,8 +242,8 @@ func (b InsertBuilder) Options(options ...string) InsertBuilder {
242
}
243
244
// Into sets the INTO clause of the query.
245
-func (b InsertBuilder) Into(from string) InsertBuilder {
246
- return builder.Set(b, "Into", from).(InsertBuilder)
+func (b InsertBuilder) Into(into string) InsertBuilder {
+ return builder.Set(b, "Into", into).(InsertBuilder)
247
248
249
// Columns adds insert columns to the query.
0 commit comments