This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sqld: allow CREATE VIEW and DROP VIEW
... but disallow CREATE TEMP VIEW. Examples: → create temp view v as select v from t; Error: failed to execute SQL: create temp view v as select v from t; unsupported statement → create view v as select v from t; → drop view v; Fixes #563
- Loading branch information