Skip to content

Commit

Permalink
fix oracle database name error
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFreeman committed Dec 8, 2024
1 parent 709a5cd commit c89f8f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/include/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

/** ============== Oracle ============== */
define('ORACLE_PORT', '1521');
define('ORACLE_SERVICE_NAME', 'xe');
define('ORACLE_SERVICE_NAME', 'freepdb1');
define('ORACLE_USER', 'system');
define('ORACLE_PASSWORD', 'oracle');
if (IS_IN_CI) {
Expand Down
2 changes: 1 addition & 1 deletion tests/swoole_pdo_oracle/bug44301.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ run(function() {
});
?>
--EXPECTF--
SQLSTATE[HY000]: General error: 942 OCIStmtExecute: ORA-00942: table or view does not exist
SQLSTATE[HY000]: General error: 942 OCIStmtExecute: ORA-00942: table or view "SYSTEM"."NO_TABLE" does not exist
Help: %s
(%s:%d)
2 changes: 1 addition & 1 deletion tests/swoole_pdo_oracle/bug_33707.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ array(3) {
[1]=>
int(942)
[2]=>
string(%d) "OCIStmtExecute: ORA-00942: table or view does not exist
string(%d) "OCIStmtExecute: ORA-00942: table or view \"SYSTEM\".\"A_TABLE_THAT_DOES_NOT_EXIST\" does not exist
Help: %s
(%s:%d)"
}

0 comments on commit c89f8f1

Please sign in to comment.