Uppercased columns for Airtable FDW never return a value #171
Open
Description
Bug report
- I confirm this is a bug with Supabase, not with my own application.
- I confirm I have searched the Docs, GitHub Discussions, and Discord.
Describe the bug
Quoted column names with uppercase letters do not return a value for Airtable wrapper.
To Reproduce
- Create a foreign data table with a quoted column name with an uppercase letter:
create foreign table my_foreign_table (
"Full Name" text
)
server airtable_server
options (
base_id 'appXXXX',
table_id 'tblXXXX'
);
- Run
select * from my_foreign_table
. - Note that the
Full Name
column never returns a value.
Expected behavior
The Full Name
column should return a value.
Screenshots
N/A
System information
Reproducible on latest wrappers ref.
Additional context
N/A