Skip to content

Commit 4f30e7f

Browse files
committed
Fix build
1 parent d438852 commit 4f30e7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm.Sqlite/Sql.Drivers.Sqlite/v3/Translator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public override void Translate(SqlCompilerContext context, SqlCreateIndex node,
306306
/// <inheritdoc/>
307307
public override void Translate(SqlCompilerContext context, SqlDropIndex node)
308308
{
309-
var index = node.Index
309+
var index = node.Index;
310310
_ = context.Output.Append("DROP INDEX ");
311311
TranslateIdentifier(context.Output, index.DataTable.Schema.DbName, index.DbName);
312312
}

0 commit comments

Comments
 (0)