splitgraph / seafowl

Analytical database for data-driven Web applications 🪶

Home Page:https://seafowl.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

search_path support

mildbyte opened this issue · comments

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.