Skip to content

Commit 98eee4f

Browse files
committed
Summary for virtual method
1 parent 15e25cc commit 98eee4f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Orm/Xtensive.Orm/Sql/Compiler/SqlTranslator.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,6 +1230,11 @@ public virtual void Translate(SqlCompilerContext context, SqlDropSequence node)
12301230
_ = context.Output.Append(node.Cascade ? " CASCADE" : " RESTRICT");
12311231
}
12321232

1233+
/// <summary>
1234+
/// Translates <see cref="SqlTruncateTable"/> statement and writes result to to <see cref="SqlCompilerContext.Output"/>.
1235+
/// </summary>
1236+
/// <param name="context">The compiler context.</param>
1237+
/// <param name="node">Statement to translate.</param>
12331238
public virtual void Translate(SqlCompilerContext context, SqlTruncateTable node)
12341239
{
12351240
_ = context.Output.Append("TRUNCATE TABLE ");

0 commit comments

Comments
 (0)