I use SelectBuilder to build sql
Select select = builder.select(id, name, endpoint).from(profile)
.limitOffset(20, 0)
.build();
String sql = SqlRenderer.toString(select);
the sql is SELECT profile.id, profile.name, profile.endpoint FROM profile
Am I missing something?