We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d58fa commit 0fb1138Copy full SHA for 0fb1138
schemacrawler-ai-core/src/main/java/schemacrawler/tools/ai/tools/AbstractFunctionExecutor.java
@@ -47,4 +47,9 @@ private Pattern makeNameInclusionPattern(final String name) {
47
final int flags = Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE;
48
return Pattern.compile(pattern, flags);
49
}
50
+
51
+ @Override
52
+ public final String toString() {
53
+ return command.getName();
54
+ }
55
0 commit comments