[jOOQ/jOOQ#2370] [jOOQ/jOOQ#8528] Override TableOptions.toString()

This commit is contained in:
Lukas Eder 2020-06-10 15:53:19 +02:00
parent 24cf349eb2
commit d6a38dbb55

View File

@ -230,6 +230,11 @@ public final class TableOptions implements Serializable {
return source;
}
@Override
public String toString() {
return "TableOptions[" + type + "]";
}
/**
* A description of the type of a {@link Table}.
*/