提交 ac5370da authored 作者: Thomas Mueller's avatar Thomas Mueller

User defined functions: the source code is now available using SELECT SOURCE…

User defined functions: the source code is now available using SELECT SOURCE FROM INFORMATION_SCHEMA.FUNCTION_ALIASES.
上级 4f68af2a
...@@ -290,7 +290,8 @@ public class MetaTable extends Table { ...@@ -290,7 +290,8 @@ public class MetaTable extends Table {
"COLUMN_COUNT INT", "COLUMN_COUNT INT",
"RETURNS_RESULT SMALLINT", "RETURNS_RESULT SMALLINT",
"REMARKS", "REMARKS",
"ID INT" "ID INT",
"SOURCE"
); );
break; break;
case FUNCTION_COLUMNS: case FUNCTION_COLUMNS:
...@@ -1085,7 +1086,9 @@ public class MetaTable extends Table { ...@@ -1085,7 +1086,9 @@ public class MetaTable extends Table {
// REMARKS // REMARKS
replaceNullWithEmpty(alias.getComment()), replaceNullWithEmpty(alias.getComment()),
// ID // ID
"" + alias.getId() "" + alias.getId(),
// SOURCE
alias.getSource()
); );
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论