Skip to content

Commit 0061e89

Browse files
VladoKurucbeikov
authored andcommitted
Informix run fix
1 parent 3a58018 commit 0061e89

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ The following table illustrates a list of commands for various databases that ca
206206
|TiDB
207207
|`./docker_db.sh tidb`
208208
|`./gradlew test -Pdb=tidb`
209+
210+
|Informix
211+
|`./docker_db.sh informix`
212+
|`./gradlew test -Pdb=informix`
209213
|===
210214

211215
To stop a container started by `docker`, use the command

docker_db.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ informix_14_10() {
963963
echo "Waiting for Informix to start..."
964964
sleep 30
965965
done
966-
if [ "$n" -ge 5 ]; then
966+
if [ "$n" -ge 10 ]; then
967967
echo "Informix failed to start and configure after 5 minutes"
968968
else
969969
echo "Informix successfully started"
@@ -987,7 +987,7 @@ informix_12_10() {
987987
echo "Waiting for Informix to start..."
988988
sleep 30
989989
done
990-
if [ "$n" -ge 5 ]; then
990+
if [ "$n" -ge 10 ]; then
991991
echo "Informix failed to start and configure after 5 minutes"
992992
else
993993
echo "Informix successfully started"

gradle/databases.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ ext {
295295
'jdbc.driver': 'com.informix.jdbc.IfxDriver',
296296
'jdbc.user' : 'informix',
297297
'jdbc.pass' : 'in4mix',
298-
'jdbc.url' : 'jdbc:informix-sqli://' + dbHost + ':9088/sysuser:INFORMIXSERVER=dev;user=informix;password=in4mix',
298+
'jdbc.url' : 'jdbc:informix-sqli://' + dbHost + ':9088/sysuser:INFORMIXSERVER=informix;user=informix;password=in4mix;DELIMIDENT=Y',
299299
'jdbc.datasource' : 'com.informix.jdbc.IfxDriver',
300300
// 'jdbc.datasource' : 'com.informix.jdbcx.IfxDataSource',
301301
'connection.init_sql' : ''

0 commit comments

Comments
 (0)