[#4838] Switched flag default to false

This commit is contained in:
lukaseder 2016-01-27 17:13:54 +01:00
parent 306dc0f24e
commit 1f5a205ea1
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ abstract class AbstractGenerator implements Generator {
boolean generateGlobalLinkReferences = true;
boolean fluentSetters = false;
String generateFullyQualifiedTypes = "";
boolean generateTableValuedFunctions = true;
boolean generateTableValuedFunctions = false;
protected GeneratorStrategyWrapper strategy;
final Language language;

View File

@ -552,7 +552,7 @@
compatibility between jOOQ 3.8 and previous versions, when using TABLE
and VARRAY types in Oracle
-->
<element name="tableValuedFunctions" type="boolean" default="true" minOccurs="0" maxOccurs="1" />
<element name="tableValuedFunctions" type="boolean" default="false" minOccurs="0" maxOccurs="1" />
</all>
</complexType>