Skip to content

Commit f8d31fb

Browse files
committed
Fix build
1 parent 536aa56 commit f8d31fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Orm/Xtensive.Orm/Sql/Dml/Statements/SqlInsert.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ internal override SqlInsert Clone(SqlNodeCloneContext context) =>
4040
SqlInsert clone = new SqlInsert();
4141
clone.Into = t.Into?.Clone(c);
4242
clone.From = t.From?.Clone(c);
43-
clone.ValueRows = t.ValueRows.Clone(context);
43+
clone.ValueRows = t.ValueRows.Clone(c);
4444

4545
if (t.Hints.Count > 0)
4646
foreach (SqlHint hint in t.Hints)

0 commit comments

Comments
 (0)