Throws `ORA-00942: table or view does not exist` otherwise

Co-authored-by: Austin Huang <im@austinhuang.me>
pull/872/head
El RIDO 2022-01-24 21:43:48 +01:00 committed by GitHub
parent 535f038daa
commit 55db9426b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ class Database extends AbstractData
$sql = 'SHOW TABLES';
break;
case 'oci':
$sql = 'SELECT "table_name" FROM "all_tables"';
$sql = 'SELECT table_name FROM all_tables';
break;
case 'pgsql':
$sql = 'SELECT c."relname" AS "table_name" '