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 support for parsing "create domain" statement #61

Merged
merged 2 commits into from
Dec 12, 2023

Conversation

cvng
Copy link
Contributor

@cvng cvng commented Dec 10, 2023

What kind of change does this PR introduce?

Feature: try to add support for "create domain" statement as requested in #51

What is the current behavior?

Parser panics:

could not find node for token Token { kind: Create, text: "CREATE", span: 0..6, token_type: ReservedKeyword } at depth 1

What is the new behavior?

Parser returns:

Additional context

Not sure of what exactly should go in the CreateDomainStmt branch, but I have tried with these variations and it worked:

CREATE DOMAIN name [ AS ] data_type [ constraint [ ... ] ]

Copy link
Collaborator

@psteinroe psteinroe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for the contribution! can you check the node output with debug logs enabled and ensure that the properties match their nodes?

also, what would help you in figuring this out faster? I think we can improve here.

@cvng
Copy link
Contributor Author

cvng commented Dec 11, 2023

Got it, I have removed the extra token, thanks!

For the As token (which is optional), it has no effect under the TypeName node, so I had to keep it under the CreateDomainStmt node or the parser still panics with:

could not find node for token Token { kind: As, text: "AS", span: 29..31, token_type: ReservedKeyword } at depth 2

As a side-note: TypeName node starts at location: Some(32) so maybe this is why?

1: Node {
    kind: TypeName,
    depth: 1,
    properties: [
        TokenProperty {
            value: Some(
                "text",
            ),
            kind: None,
        },
    ],
    location: Some(
        32,
    ),
},

@cvng cvng requested a review from psteinroe December 11, 2023 18:56
Copy link
Collaborator

@psteinroe psteinroe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm! once you merge main tests should pass too :)

@cvng cvng force-pushed the try-create-domain branch from 3d8da5e to 7db47a7 Compare December 12, 2023 12:03
@psteinroe psteinroe merged commit 761d11a into supabase-community:main Dec 12, 2023
@cvng cvng deleted the try-create-domain branch December 12, 2023 13:17
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.

2 participants