Skip to content

Conversation

@lemonadern
Copy link
Collaborator

@lemonadern lemonadern commented Mar 31, 2025

Summary

select_limit および opt_select_limit を削除対象のノードに入れました

select_limit は limit_clause や offset clause を含むノードで、 opt_select_limit はそれをラップしている要素です。 select 文のうち、 for_locking_clause の後にlimit句、 offset 句をで利用されています。

select_limit:

select_limit:
    limit_clause offset_clause
    | offset_clause limit_clause
    | limit_clause
    | offset_clause
;

opt_select_limit:

opt_select_limit:
			select_limit						{ $$ = $1; }
			| /* EMPTY */						{ $$ = NULL; }
		;

利用箇所:

@lemonadern lemonadern closed this Mar 31, 2025
@lemonadern lemonadern reopened this Mar 31, 2025
@lemonadern lemonadern changed the title Remove opt_select_limit Remove select_limit, opt_select_limit Mar 31, 2025
@lemonadern lemonadern closed this Mar 31, 2025
tanzaku added a commit that referenced this pull request Jul 15, 2025
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