Informix run fix

This commit is contained in:
Vladimír Kuruc 2024-06-10 16:21:17 +02:00 committed by Christian Beikov
parent c08b1b9bf1
commit df940d392f
3 changed files with 7 additions and 3 deletions

View File

@ -206,6 +206,10 @@ The following table illustrates a list of commands for various databases that ca
|TiDB
|`./docker_db.sh tidb`
|`./gradlew test -Pdb=tidb`
|Informix
|`./docker_db.sh informix`
|`./gradlew test -Pdb=informix`
|===
To stop a container started by `docker`, use the command

View File

@ -967,7 +967,7 @@ informix_14_10() {
echo "Waiting for Informix to start..."
sleep 30
done
if [ "$n" -ge 5 ]; then
if [ "$n" -ge 10 ]; then
echo "Informix failed to start and configure after 5 minutes"
else
echo "Informix successfully started"
@ -991,7 +991,7 @@ informix_12_10() {
echo "Waiting for Informix to start..."
sleep 30
done
if [ "$n" -ge 5 ]; then
if [ "$n" -ge 10 ]; then
echo "Informix failed to start and configure after 5 minutes"
else
echo "Informix successfully started"

View File

@ -295,7 +295,7 @@ ext {
'jdbc.driver': 'com.informix.jdbc.IfxDriver',
'jdbc.user' : 'informix',
'jdbc.pass' : 'in4mix',
'jdbc.url' : 'jdbc:informix-sqli://' + dbHost + ':9088/sysuser:INFORMIXSERVER=dev;user=informix;password=in4mix',
'jdbc.url' : 'jdbc:informix-sqli://' + dbHost + ':9088/sysuser:INFORMIXSERVER=informix;user=informix;password=in4mix;DELIMIDENT=Y',
'jdbc.datasource' : 'com.informix.jdbc.IfxDriver',
// 'jdbc.datasource' : 'com.informix.jdbcx.IfxDataSource',
'connection.init_sql' : ''