Skip to content

Commit 39d6132

Browse files
committed
chore: upgrade to gvenzl/oracle-free
1 parent 4838c2a commit 39d6132

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/reusable-phpunit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
--health-retries=3
115115
116116
oracle:
117-
image: gvenzl/oracle-xe:21
117+
image: gvenzl/oracle-free:latest
118118
env:
119119
ORACLE_RANDOM_PASSWORD: true
120120
APP_USER: ORACLE

.github/workflows/test-random-execution.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
--health-retries=3
121121
122122
oracle:
123-
image: gvenzl/oracle-xe:21
123+
image: gvenzl/oracle-free:latest
124124
env:
125125
ORACLE_RANDOM_PASSWORD: true
126126
APP_USER: ORACLE

app/Config/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class Database extends Config
140140
// * @var array<string, mixed>
141141
// */
142142
// public array $default = [
143-
// 'DSN' => 'localhost:1521/XEPDB1',
143+
// 'DSN' => 'localhost:1521/FREEPDB1',
144144
// 'username' => 'root',
145145
// 'password' => 'root',
146146
// 'DBDriver' => 'OCI8',

tests/_support/Config/Registrar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class Registrar
105105
'port' => 1433,
106106
],
107107
'OCI8' => [
108-
'DSN' => 'localhost:1521/XEPDB1',
108+
'DSN' => 'localhost:1521/FREEPDB1',
109109
'hostname' => '',
110110
'username' => 'ORACLE',
111111
'password' => 'ORACLE',

tests/system/Database/Live/ExecuteLogMessageFormatTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function testLogMessageWhenExecuteFailsShowFullStructuredBacktrace(): voi
5050
'MySQLi' => '/Table \'test\.some_table\' doesn\'t exist/',
5151
'Postgre' => '/pg_query\(\): Query failed: ERROR: relation "some_table" does not exist/',
5252
'SQLite3' => '/Unable to prepare statement:\s(\d+,\s)?no such table: some_table/',
53-
'OCI8' => '/oci_execute\(\): ORA-00942: table or view does not exist/',
53+
'OCI8' => '/oci_execute\(\): ORA-00942: table or view "ORACLE"\."SOME_TABLE" does not exist/',
5454
'SQLSRV' => '/\[Microsoft\]\[ODBC Driver \d+ for SQL Server\]\[SQL Server\]Invalid object name \'some_table\'/',
5555
default => '/Unknown DB error/',
5656
};

0 commit comments

Comments
 (0)