[jOOQ/jOOQ#17798] T-SQL dialects should generate LTRIM(string, characters) (and RTRIM) instead of TRIM(LEADING characters FROM string) for better overall compatibility

This commit is contained in:
Lukas Eder 2024-12-23 10:09:58 +01:00
parent 3d4ab62785
commit e5e64595a0
2 changed files with 4 additions and 0 deletions

View File

@ -134,6 +134,8 @@ implements
case SQLITE:
ctx.visit(function(N_LTRIM, getDataType(), string, characters));
break;

View File

@ -134,6 +134,8 @@ implements
case SQLITE:
ctx.visit(function(N_RTRIM, getDataType(), string, characters));
break;