Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
839fcc9f
Commit
839fcc9f
authored
Jun 15, 2007
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied patch by Joachim to enable checktcp again
parent
bd06ab29
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
6 deletions
+48
-6
src/interfaces/ecpg/test/Makefile
src/interfaces/ecpg/test/Makefile
+2
-2
src/interfaces/ecpg/test/ecpg_schedule_tcp
src/interfaces/ecpg/test/ecpg_schedule_tcp
+42
-0
src/interfaces/ecpg/test/expected/connect-test1.c.in
src/interfaces/ecpg/test/expected/connect-test1.c.in
+4
-4
No files found.
src/interfaces/ecpg/test/Makefile
View file @
839fcc9f
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.7
0 2007/06/12 15:00:41 alvherre
Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.7
1 2007/06/15 08:23:52 meskes
Exp $
subdir
=
src/interfaces/ecpg/test
top_builddir
=
../../../..
...
...
@@ -92,7 +92,7 @@ check: all
# the same options, but with --listen-on-tcp
checktcp
:
all
./pg_regress
--dbname
=
regress1,connectdb
--top-builddir
=
$(top_builddir)
--temp-install
=
./tmp_check
--temp-port
=
$(TEMP_PORT)
--multibyte
=
$(MULTIBYTE)
--load-language
=
plpgsql
$(NOLOCALE)
$(THREAD)
--schedule
=
$(srcdir)
/ecpg_schedule
--create-role
=
connectuser,connectdb
--host
=
localhost
./pg_regress
--dbname
=
regress1,connectdb
--top-builddir
=
$(top_builddir)
--temp-install
=
./tmp_check
--temp-port
=
$(TEMP_PORT)
--multibyte
=
$(MULTIBYTE)
--load-language
=
plpgsql
$(NOLOCALE)
$(THREAD)
--schedule
=
$(srcdir)
/ecpg_schedule
_tcp
--create-role
=
connectuser,connectdb
--host
=
localhost
installcheck
:
all
./pg_regress
--psqldir
=
$(PSQLDIR)
--dbname
=
regress1,connectdb
--top-builddir
=
$(top_builddir)
--multibyte
=
$(MULTIBYTE)
--load-language
=
plpgsql
$(NOLOCALE)
$(THREAD)
--schedule
=
$(srcdir)
/ecpg_schedule
--create-role
=
connectuser,connectdb
src/interfaces/ecpg/test/ecpg_schedule_tcp
0 → 100644
View file @
839fcc9f
test: compat_informix/dec_test
test: compat_informix/charfuncs
test: compat_informix/rfmtdate
test: compat_informix/rfmtlong
test: compat_informix/rnull
test: compat_informix/test_informix
test: compat_informix/test_informix2
test: connect/test2
test: connect/test3
test: connect/test4
test: connect/test5
test: pgtypeslib/dt_test
test: pgtypeslib/dt_test2
test: pgtypeslib/num_test
test: pgtypeslib/num_test2
test: preproc/comment
test: preproc/define
test: preproc/init
test: preproc/type
test: preproc/variable
test: preproc/whenever
test: sql/array
test: sql/binary
test: sql/code100
test: sql/copystdout
test: sql/define
test: sql/desc
test: sql/dynalloc
test: sql/dynalloc2
test: sql/dyntest
test: sql/execute
test: sql/fetch
test: sql/func
test: sql/indicators
test: sql/quote
test: sql/show
test: sql/insupd
test: sql/parser
test: thread/thread
test: thread/thread_implicit
test: connect/test1
src/interfaces/ecpg/test/expected/connect-test1.c.in
View file @
839fcc9f
...
...
@@ -37,7 +37,7 @@ main(void)
ECPGdebug(1, stderr);
{ ECPGconnect(__LINE__, 0, "connectdb" , NULL,NULL , "main", 0); }
{ ECPGconnect(__LINE__, 0, "connectdb" , NULL,
NULL , "main", 0); }
#line 22 "test1.pgc"
{ ECPGdo(__LINE__, 0, 1, NULL, "alter user connectuser encrypted password 'connectpw'", ECPGt_EOIT, ECPGt_EORT);}
...
...
@@ -47,7 +47,7 @@ main(void)
#line 24 "test1.pgc"
/* <-- "main" not specified */
{ ECPGconnect(__LINE__, 0, "connectdb@localhost" , NULL,NULL , "main", 0); }
{ ECPGconnect(__LINE__, 0, "connectdb@localhost" , NULL,
NULL , "main", 0); }
#line 26 "test1.pgc"
{ ECPGdisconnect(__LINE__, "main");}
...
...
@@ -61,7 +61,7 @@ main(void)
#line 30 "test1.pgc"
{ ECPGconnect(__LINE__, 0, "connectdb@localhost:@TEMP_PORT@" , NULL,NULL , "main", 0); }
{ ECPGconnect(__LINE__, 0, "connectdb@localhost:@TEMP_PORT@" , NULL,
NULL , "main", 0); }
#line 32 "test1.pgc"
{ ECPGdisconnect(__LINE__, "main");}
...
...
@@ -75,7 +75,7 @@ main(void)
#line 36 "test1.pgc"
{ ECPGconnect(__LINE__, 0, "connectdb:@TEMP_PORT@" , NULL,NULL , "main", 0); }
{ ECPGconnect(__LINE__, 0, "connectdb:@TEMP_PORT@" , NULL,
NULL , "main", 0); }
#line 38 "test1.pgc"
{ ECPGdisconnect(__LINE__, "main");}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment