requery
requery copied to clipboard
Different syntax for idempotent view creation in sqlite vs postgres
- SQLite:
CREATE VIEW IF NOT EXISTS - Postgres:
CREATE OR REPLACE VIEW
And indeed, they're not identical behaviors, so this is probably something to separate at the type level.