Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

sqld: allow CREATE VIEW and DROP VIEW #567

Merged
merged 1 commit into from
Jul 31, 2023
Merged

sqld: allow CREATE VIEW and DROP VIEW #567

merged 1 commit into from
Jul 31, 2023

Conversation

psarna
Copy link
Contributor

@psarna psarna commented Jul 31, 2023

... 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

... 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
@psarna psarna requested a review from MarinPostma July 31, 2023 11:18
@MarinPostma MarinPostma added this pull request to the merge queue Jul 31, 2023
Merged via the queue into main with commit 2ec212d Jul 31, 2023
8 checks passed
@MarinPostma MarinPostma deleted the createdropview branch August 25, 2023 13:07
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow CREATE VIEW and DROP VIEW
2 participants