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

feat: support "create view" with relpersistence #65

Merged
merged 1 commit into from
Dec 13, 2023

Conversation

cvng
Copy link
Contributor

@cvng cvng commented Dec 12, 2023

What kind of change does this PR introduce?

Follow-up for #63, #51

What is the current behavior?

Parser panics

What is the new behavior?

Parser returns:

        ViewStmt(
            ViewStmt {
                view: Some(
                    RangeVar {
                        catalogname: "",
                        schemaname: "",
                        relname: "comedies",
                        inh: true,
                        relpersistence: "t",
                        alias: None,
                        location: 33,
                    },
                ),
                aliases: [],
                query: Some(
                    Node {
                        node: Some(
                            SelectStmt(
                                SelectStmt {
                                    distinct_clause: [],
                                    into_clause: None,
                                    target_list: [
                                        Node {
                                            node: Some(
                                                ResTarget(
                                                    ResTarget {
                                                        name: "",
                                                        indirection: [],
                                                        val: Some(
                                                            Node {
                                                                node: Some(
                                                                    ColumnRef(
                                                                        ColumnRef {
                                                                            fields: [
                                                                                Node {
                                                                                    node: Some(
                                                                                        AStar(
                                                                                            AStar,
                                                                                        ),
                                                                                    ),
                                                                                },
                                                                            ],
                                                                            location: 52,
                                                                        },
                                                                    ),
                                                                ),
                                                            },
                                                        ),
                                                        location: 52,
                                                    },
                                                ),
                                            ),
                                        },
                                    ],
                                    from_clause: [
                                        Node {
                                            node: Some(
                                                RangeVar(
                                                    RangeVar {
                                                        catalogname: "",
                                                        schemaname: "",
                                                        relname: "films",
                                                        inh: true,
                                                        relpersistence: "p",
                                                        alias: None,
                                                        location: 59,
                                                    },
                                                ),
                                            ),
                                        },
                                    ],
                                    where_clause: None,
                                    group_clause: [],
                                    group_distinct: false,
                                    having_clause: None,
                                    window_clause: [],
                                    values_lists: [],
                                    sort_clause: [],
                                    limit_offset: None,
                                    limit_count: None,
                                    limit_option: Default,
                                    locking_clause: [],
                                    with_clause: None,
                                    op: SetopNone,
                                    all: false,
                                    larg: None,
                                    rarg: None,
                                },
                            ),
                        ),
                    },
                ),
                replace: true,
                options: [],
                with_check_option: NoCheckOption,
            },
        ),

Additional context

I would expect Temporary token to be part of RangeVar node but parser still panics so I had to make it part of ViewStmt, very similar to what we had with the As token being part of CreateDomainStmt in #61

@@ -439,6 +439,17 @@ fn custom_handlers(node: &Node) -> TokenStream {
tokens.push(TokenProperty::from(Token::Or));
tokens.push(TokenProperty::from(Token::Replace));
}
if let Some(n) = &n.view {
match n.relpersistence.as_str() {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Here, I would expect Temporary token to be part of RangeVar node but parser still panics so I had to make it part of ViewStmt, very similar to what we had with the As token being part of CreateDomainStmt in #61

cc @psteinroe

Copy link
Collaborator

Choose a reason for hiding this comment

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

thats an interesting case! I agree with your reasoning. to give a bit of context. Take the substring create temporary view comedies as an example. The create and the view token should be part of the ViewStmt itself, while the temporary is definitely part of the RangeVar node. We cannot create a valid tree out of this, since we would have to open RangeVar at temporary, close it to go back to ViewStmt and then open it again to be back at RangeVar for comedies. So yes, we should pull temporary back up into ViewStmt. thanks!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

it makes sense, thanks for the clarification

@cvng cvng force-pushed the fix/view-relpersistence branch from 639c591 to e00d104 Compare December 12, 2023 17:37
@cvng cvng force-pushed the fix/view-relpersistence branch from e00d104 to 4aeba6a Compare December 12, 2023 17:52
@psteinroe
Copy link
Collaborator

btw @cvng feel free to add your sample statements do tests/data/statements/valid to also include them in the e2e tests!

@psteinroe psteinroe merged commit 421e189 into supabase-community:main Dec 13, 2023
@cvng cvng deleted the fix/view-relpersistence branch December 13, 2023 08:03
@cvng
Copy link
Contributor Author

cvng commented Dec 13, 2023

btw @cvng feel free to add your sample statements do tests/data/statements/valid to also include them in the e2e tests!

I will do, I find it generally more convenient to debug at the e2e layer

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