Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include view for User Defined Functions (UDFs) #734

Open
proddata opened this issue Jun 20, 2021 · 0 comments · May be fixed by #752
Open

Include view for User Defined Functions (UDFs) #734

proddata opened this issue Jun 20, 2021 · 0 comments · May be fixed by #752

Comments

@proddata
Copy link
Member

With 4.5.0 UDFs became available in all versions. Right now one has to know where to look for existing UDFs defined in the information_schema.routines table like so:

SELECT
  routine_schema,
  routine_name,
  specific_name,
  data_type,
  routine_definition,
  routine_body
FROM information_schema.routines
where routine_body = 'javascript';

Feature description

  • Integrate a view in the AdminUI similar to the ones for SQL views, listing all available UDFs (definition, input and output data types) and a convenient way to replace an existing UDF
  • Optional: List usage of UDFs in tables / views (e.g. generated columns)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants