We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I asked this over in the Slack, but I figured it would be better to have it answered/tracked here.
All of my queries are pre-defined with CREATE FUNCTION and LANGUAGE plpgsql.
CREATE FUNCTION
LANGUAGE plpgsql
So I'm basically doing SELECT my_func($1, $2) over and over with varying function names and parameter counts.
SELECT my_func($1, $2)
My guess is the main blocker here is PL/pgSQL, but it's also possible that Readyset doesn't try to “look inside” UDFs at all.
Note: I haven't tried it myself yet.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I asked this over in the Slack, but I figured it would be better to have it answered/tracked here.
All of my queries are pre-defined with
CREATE FUNCTION
andLANGUAGE plpgsql
.So I'm basically doing
SELECT my_func($1, $2)
over and over with varying function names and parameter counts.My guess is the main blocker here is PL/pgSQL, but it's also possible that Readyset doesn't try to “look inside” UDFs at all.
Note: I haven't tried it myself yet.
The text was updated successfully, but these errors were encountered: