Remove problematic template test using type

Note: `string` is an actual type (and keyword) in CockroachDB
This commit is contained in:
Marco Belladelli 2024-09-16 15:26:21 +02:00
parent 9b5f17340f
commit e411775c70
1 changed files with 0 additions and 2 deletions

View File

@ -50,8 +50,6 @@ public class TemplateTest {
"extract(hour from {@}.time)", factory );
assertWhereStringTemplate( "extract(day from date)",
"extract(day from {@}.date)", factory );
assertWhereStringTemplate( "trim(leading '_' from string)",
"trim(leading '_' from {@}.string)", factory );
assertWhereStringTemplate( "left(hello,4) || right(world,5)",
"left({@}.hello,4) || right({@}.world,5)", factory );
assertWhereStringTemplate( "N'a'", factory );