Re: How does pg parse 'select '(1,2)''

2023-08-06 Thread Kyotaro Horiguchi
At Sat, 5 Aug 2023 21:46:33 +0800, jacktby jacktby wrote in > I’m trying to add new grammar for my application. So I’m do research on > gram.y. > I think it will make the '(1,2)' as " '(' a_expr ')' "; but I can’t find out > something like > " a_expr ',' a_expr “, can you give me the details?

How does pg parse 'select '(1,2)''

2023-08-05 Thread jacktby jacktby
I’m trying to add new grammar for my application. So I’m do research on gram.y. I think it will make the '(1,2)' as " '(' a_expr ')' "; but I can’t find out something like " a_expr ',' a_expr “, can you give me the details?