[jOOQ/jOOQ#8528] Added meaningful toString() impl for debugging

This commit is contained in:
Lukas Eder 2019-11-19 16:58:33 +01:00
parent 96872f256e
commit 8afc8f6f37

View File

@ -1472,4 +1472,9 @@ final class DDLInterpreter {
this.sort = sort;
}
}
@Override
public String toString() {
return meta().toString();
}
}