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'd like to be able to use table functions as scalars for simple select functions.
select
currently i have to do something like
select first_name from read_parquet('userdata1.parquet')
when I would prefer to just do
select read_parquet('userdata1.parquet').first_name
Internally, we can pretty easily wrap the outputs of the table function as scalar structs instead of recordbatches.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
i'd like to be able to use table functions as scalars for simple
select
functions.currently i have to do something like
when I would prefer to just do
Internally, we can pretty easily wrap the outputs of the table function as scalar structs instead of recordbatches.
The text was updated successfully, but these errors were encountered: