Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue notice when skipping tables due to exist clauses #2923

Open
greyscaled opened this issue Apr 22, 2024 · 0 comments
Open

issue notice when skipping tables due to exist clauses #2923

greyscaled opened this issue Apr 22, 2024 · 0 comments

Comments

@greyscaled
Copy link
Contributor

greyscaled commented Apr 22, 2024

Minor issue with respect to output not indicating if a relation was skipped or actually created.

Postgres:

postgres=> create table if not exists test_table (a int);
NOTICE:  relation "test_table" already exists, skipping
CREATE TABLE

postgres=> drop table if exists test_table;;
NOTICE:  table "test_table" does not exist, skipping
DROP TABLE

GlareDB:

> create table if not exists hello (a text);
Table created

> drop table if exists hello;
Table(s) dropped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant