File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/interfaces/ecpg/test/connect Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ exec sql end declare section;
2626 exec sql connect to connectdb@localhost as main;
2727 exec sql disconnect main;
2828
29- exec sql connect to @localhost as main;
29+ exec sql connect to @localhost as main user connectdb ;
3030 exec sql disconnect main;
3131
3232 exec sql connect to connectdb@localhost:@TEMP_PORT@ as main;
3333 exec sql disconnect main;
3434
35- exec sql connect to @localhost:@TEMP_PORT@ as main;
35+ exec sql connect to @localhost:@TEMP_PORT@ as main user connectdb ;
3636 exec sql disconnect main;
3737
3838 exec sql connect to connectdb:@TEMP_PORT@ as main;
3939 exec sql disconnect main;
4040
41- exec sql connect to :@TEMP_PORT@ as main;
41+ exec sql connect to :@TEMP_PORT@ as main user connectdb ;
4242 exec sql disconnect main;
4343
4444 exec sql connect to tcp:postgresql://localhost:@TEMP_PORT@/connectdb user connectuser identified by connectpw;
You can’t perform that action at this time.
0 commit comments