mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Changed lexer to no longer use the default rule.
Synced parser and keyword list. Fixed parsing of CONNECT statement so it accepts a C string again.
This commit is contained in:
@ -34,7 +34,7 @@ exec sql end declare section;
|
||||
/* will close "second" */
|
||||
exec sql disconnect DEFAULT;
|
||||
|
||||
exec sql connect to REGRESSDB1 as second;
|
||||
exec sql connect to "connectdb" as second;
|
||||
exec sql disconnect ALL;
|
||||
|
||||
exec sql disconnect CURRENT;
|
||||
|
@ -78,7 +78,7 @@ main(void)
|
||||
#line 35 "test3.pgc"
|
||||
|
||||
|
||||
{ ECPGconnect(__LINE__, 0, "regress1" , NULL,NULL , "second", 0); }
|
||||
{ ECPGconnect(__LINE__, 0, "connectdb" , NULL,NULL , "second", 0); }
|
||||
#line 37 "test3.pgc"
|
||||
|
||||
{ ECPGdisconnect(__LINE__, "ALL");}
|
||||
|
Reference in New Issue
Block a user