Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable-phpunit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
--health-retries=3
oracle:
image: gvenzl/oracle-xe:21
image: gvenzl/oracle-free:latest
env:
ORACLE_RANDOM_PASSWORD: true
APP_USER: ORACLE
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-random-execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
--health-retries=3
oracle:
image: gvenzl/oracle-xe:21
image: gvenzl/oracle-free:latest
env:
ORACLE_RANDOM_PASSWORD: true
APP_USER: ORACLE
Expand Down
2 changes: 1 addition & 1 deletion app/Config/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class Database extends Config
// * @var array<string, mixed>
// */
// public array $default = [
// 'DSN' => 'localhost:1521/XEPDB1',
// 'DSN' => 'localhost:1521/FREEPDB1',
// 'username' => 'root',
// 'password' => 'root',
// 'DBDriver' => 'OCI8',
Expand Down
2 changes: 1 addition & 1 deletion tests/_support/Config/Registrar.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class Registrar
'port' => 1433,
],
'OCI8' => [
'DSN' => 'localhost:1521/XEPDB1',
'DSN' => 'localhost:1521/FREEPDB1',
'hostname' => '',
'username' => 'ORACLE',
'password' => 'ORACLE',
Expand Down
2 changes: 1 addition & 1 deletion tests/system/Database/Live/ExecuteLogMessageFormatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function testLogMessageWhenExecuteFailsShowFullStructuredBacktrace(): voi
'MySQLi' => '/Table \'test\.some_table\' doesn\'t exist/',
'Postgre' => '/pg_query\(\): Query failed: ERROR: relation "some_table" does not exist/',
'SQLite3' => '/Unable to prepare statement:\s(\d+,\s)?no such table: some_table/',
'OCI8' => '/oci_execute\(\): ORA-00942: table or view does not exist/',
'OCI8' => '/oci_execute\(\): ORA-00942: table or view "ORACLE"\."SOME_TABLE" does not exist/',
'SQLSRV' => '/\[Microsoft\]\[ODBC Driver \d+ for SQL Server\]\[SQL Server\]Invalid object name \'some_table\'/',
default => '/Unknown DB error/',
};
Expand Down
Loading