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

add strict option #10

Open
juunini opened this issue Feb 11, 2024 · 0 comments
Open

add strict option #10

juunini opened this issue Feb 11, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@juunini
Copy link
Member

juunini commented Feb 11, 2024

CREATE TABLE "tBl1" ( -- Created table name is "tBl1"
  id int
);

SELECT * FROM tbl1; -- failure
SELECT * FROM tBl1; -- failure
SELECT * FROM TBL1; -- failure
SELECT * FROM "tbl1"; -- failure
SELECT * FROM "tBl1"; -- success

CREATE TABLE tBl2 ( -- Created table name is "tbl2"
  id int
);

SELECT * FROM tbl2; -- success
SELECT * FROM TBL2; -- success
SELECT * FROM tBl2; -- success
SELECT * FROM "TBL2"; -- failure
SELECT * FROM "tbl2"; -- success

Should add strict option.
strict option's default value is true.
will user can optionally set to false.

@juunini juunini added the enhancement New feature or request label Feb 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant