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
The following code works without parser error (generic function):
select vector('[0,1,1,0,0]', 5, int8); select to_vector('[0,1,1,0,0]', 5, int8);
However, when using an asterisk in the 2nd or 3rd parameter a syntax error is produced by the db* CODECOP parser:
select vector('[0,1,1,0,0]', *, int8); select vector('[0,1,1,0,0]', 5, *); select vector('[0,1,1,0,0]', *, *); select to_vector('[0,1,1,0,0]', *, int8); select to_vector('[0,1,1,0,0]', 5, *); select to_vector('[0,1,1,0,0]', *, *);
The text was updated successfully, but these errors were encountered:
rolandstirnimann
No branches or pull requests
The following code works without parser error (generic function):
However, when using an asterisk in the 2nd or 3rd parameter a syntax error is produced by the db* CODECOP parser:
The text was updated successfully, but these errors were encountered: