Informix run fix
This commit is contained in:
parent
c08b1b9bf1
commit
df940d392f
|
@ -206,6 +206,10 @@ The following table illustrates a list of commands for various databases that ca
|
||||||
|TiDB
|
|TiDB
|
||||||
|`./docker_db.sh tidb`
|
|`./docker_db.sh tidb`
|
||||||
|`./gradlew test -Pdb=tidb`
|
|`./gradlew test -Pdb=tidb`
|
||||||
|
|
||||||
|
|Informix
|
||||||
|
|`./docker_db.sh informix`
|
||||||
|
|`./gradlew test -Pdb=informix`
|
||||||
|===
|
|===
|
||||||
|
|
||||||
To stop a container started by `docker`, use the command
|
To stop a container started by `docker`, use the command
|
||||||
|
|
|
@ -967,7 +967,7 @@ informix_14_10() {
|
||||||
echo "Waiting for Informix to start..."
|
echo "Waiting for Informix to start..."
|
||||||
sleep 30
|
sleep 30
|
||||||
done
|
done
|
||||||
if [ "$n" -ge 5 ]; then
|
if [ "$n" -ge 10 ]; then
|
||||||
echo "Informix failed to start and configure after 5 minutes"
|
echo "Informix failed to start and configure after 5 minutes"
|
||||||
else
|
else
|
||||||
echo "Informix successfully started"
|
echo "Informix successfully started"
|
||||||
|
@ -991,7 +991,7 @@ informix_12_10() {
|
||||||
echo "Waiting for Informix to start..."
|
echo "Waiting for Informix to start..."
|
||||||
sleep 30
|
sleep 30
|
||||||
done
|
done
|
||||||
if [ "$n" -ge 5 ]; then
|
if [ "$n" -ge 10 ]; then
|
||||||
echo "Informix failed to start and configure after 5 minutes"
|
echo "Informix failed to start and configure after 5 minutes"
|
||||||
else
|
else
|
||||||
echo "Informix successfully started"
|
echo "Informix successfully started"
|
||||||
|
|
|
@ -295,7 +295,7 @@ ext {
|
||||||
'jdbc.driver': 'com.informix.jdbc.IfxDriver',
|
'jdbc.driver': 'com.informix.jdbc.IfxDriver',
|
||||||
'jdbc.user' : 'informix',
|
'jdbc.user' : 'informix',
|
||||||
'jdbc.pass' : 'in4mix',
|
'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.jdbc.IfxDriver',
|
||||||
// 'jdbc.datasource' : 'com.informix.jdbcx.IfxDataSource',
|
// 'jdbc.datasource' : 'com.informix.jdbcx.IfxDataSource',
|
||||||
'connection.init_sql' : ''
|
'connection.init_sql' : ''
|
||||||
|
|
Loading…
Reference in New Issue