File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Orm/Xtensive.Orm.Sqlite/Sql.Drivers.Sqlite/v3 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ public override void Visit(SqlFunctionCall node)
155
155
return ;
156
156
case SqlFunctionType . PadLeft :
157
157
case SqlFunctionType . PadRight :
158
- Visit ( EmulateLpadOrRpad ( arguments , node . FunctionType is SqlFunctionType . PadLeft ) ) ;
158
+ Visit ( EmulateLpadRpad ( arguments , node . FunctionType is SqlFunctionType . PadLeft ) ) ;
159
159
return ;
160
160
case SqlFunctionType . Concat :
161
161
var nod = arguments [ 0 ] ;
@@ -632,7 +632,7 @@ private static SqlDateTimePart ConvertDateTimeOffsetPartToDateTimePart(SqlDateTi
632
632
} ;
633
633
}
634
634
635
- private static SqlCase EmulateLpadOrRpad ( IReadOnlyList < SqlExpression > arguments , bool isLpad )
635
+ private static SqlCase EmulateLpadRpad ( IReadOnlyList < SqlExpression > arguments , bool isLpad )
636
636
{
637
637
var operand = arguments [ 0 ] ;
638
638
var charcount = arguments [ 1 ] ;
You can’t perform that action at this time.
0 commit comments