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

T174/T175 columns support #117

Closed
wants to merge 1 commit into from
Closed

Conversation

makssent
Copy link

@makssent makssent commented Sep 6, 2024

Fixes #59, #43.

request: CREATE TABLE T174 (ROW_ID integer generated by default as identity primary key, ROW_NAME varchar(15))
err message: You have an error in your SQL syntax: CREATE TABLE T174 (ROW_ID integer generated by default as identity primary key ROW_NAME varchar(15)); null


request: CREATE TABLE T175 (row_a int, row_b generated always as (3row_a))
err message:You have an error in your SQL syntax: CREATE TABLE T175 (row_a int row_b generated always as (3
row_a)) null
new err message:
Cannot invoke "org.antlr.v4.runtime.tree.ParseTree.accept(org.antlr.v4.runtime.tree.ParseTreeVisitor)" because "tree" is null

@makssent
Copy link
Author

makssent commented Sep 6, 2024

T175: Cannot invoke "org.antlr.v4.runtime.tree.ParseTree.accept(org.antlr.v4.runtime.tree.ParseTreeVisitor)" because "tree" is null
T174: Fixed

@makssent makssent closed this Sep 9, 2024
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

Successfully merging this pull request may close these issues.

T175 Generated columns
1 participant