splitgraph / seafowl

Analytical database for data-driven Web applications 🪶
https://seafowl.io
Apache License 2.0
388 stars 9 forks source link

search_path support #487

Closed mildbyte closed 5 months ago

mildbyte commented 5 months ago

Support SET search_path either in SQL as a temporary context-altering statement:

-- table bla.table_1 exists
SET search_path = 'bla'; SELECT * FROM table_1;   -- when this is a multi-statement single query, e.g single HTTP / gRPC request

or as some metadata header in Arrow gRPC, whichever is simplest.