While N_CURRENT_TIME is a DSL::systemName, it appears that in some test scenarios, we're quoting the name to system_time, e.g. in SQLite, which produces wrong results.
This commit is contained in:
Lukas Eder 2025-08-18 10:13:53 +02:00
parent 8aca822cca
commit ae178f3953

View File

@ -114,7 +114,7 @@ final class CurrentTime<T> extends AbstractField<T> implements QOM.CurrentTime<T
break;
default:
ctx.visit(N_CURRENT_TIME);
ctx.visit(K_CURRENT).sql('_').visit(K_TIME);
break;
}
}