We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent568b801 commit9c356a6Copy full SHA for 9c356a6
src/interfaces/ecpg/test/connect/test1.pgc.in
@@ -26,19 +26,19 @@ exec sql end declare section;
26
exec sql connect to connectdb@localhost as main;
27
exec sql disconnect main;
28
29
-exec sql connect to @localhost as main;
+exec sql connect to @localhost as main user connectdb;
30
31
32
exec sql connect to connectdb@localhost:@TEMP_PORT@ as main;
33
34
35
-exec sql connect to @localhost:@TEMP_PORT@ as main;
+exec sql connect to @localhost:@TEMP_PORT@ as main user connectdb;
36
37
38
exec sql connect to connectdb:@TEMP_PORT@ as main;
39
40
41
-exec sql connect to :@TEMP_PORT@ as main;
+exec sql connect to :@TEMP_PORT@ as main user connectdb;
42
43
44
exec sql connect to tcp:postgresql://localhost:@TEMP_PORT@/connectdb user connectuser identified by connectpw;