[#5701] Work around PostgreSQL's limit of 32767 bind variables per statement

This commit is contained in:
lukaseder 2016-12-08 21:30:26 +02:00
parent 27dbfbc7ad
commit 180ca47ecf

View File

@ -429,6 +429,11 @@ class DefaultRenderContext extends AbstractContext<RenderContext> implements Ren
// [#5701] Tests were conducted with PostgreSQL 9.5 and pgjdbc 9.4.1209
case POSTGRES:
checkForceInline(32767);
break;
case SQLITE:
checkForceInline(999);