Skip to content

Commit e77d2ec

Browse files
committed
Rename function
1 parent d487fb6 commit e77d2ec

File tree

1 file changed

+2
-2
lines changed
  • Orm/Xtensive.Orm.Sqlite/Sql.Drivers.Sqlite/v3

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public override void Visit(SqlFunctionCall node)
155155
return;
156156
case SqlFunctionType.PadLeft:
157157
case SqlFunctionType.PadRight:
158-
Visit(EmulateLpadOrRpad(arguments, node.FunctionType is SqlFunctionType.PadLeft));
158+
Visit(EmulateLpadRpad(arguments, node.FunctionType is SqlFunctionType.PadLeft));
159159
return;
160160
case SqlFunctionType.Concat:
161161
var nod = arguments[0];
@@ -632,7 +632,7 @@ private static SqlDateTimePart ConvertDateTimeOffsetPartToDateTimePart(SqlDateTi
632632
};
633633
}
634634

635-
private static SqlCase EmulateLpadOrRpad(IReadOnlyList<SqlExpression> arguments, bool isLpad)
635+
private static SqlCase EmulateLpadRpad(IReadOnlyList<SqlExpression> arguments, bool isLpad)
636636
{
637637
var operand = arguments[0];
638638
var charcount = arguments[1];

0 commit comments

Comments
 (0)