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)
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 ] ;
You can’t perform that action at this time.
0 commit comments