-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement compileTables missing method (#868)
* Add method to compile table queries in OracleGrammar A new method 'compileTables' has been added to OracleGrammar.php. This addition allows the query to be compiled to determine the tables for a database. Accompanying tests for this feature were also added in Oci8SchemaGrammarTest.php. * Fix space * Fix $owner comment missing space * Update OracleGrammar to enhance table data The OracleGrammar.php and associated test file have been updated. These modifications provide additional information, such as the schema, size, comments, and collation when compiling table data. Now, the user will have a more detailed view of their database tables. * Update src/Oci8/Schema/Grammars/OracleGrammar.php Co-authored-by: Arjay Angeles <aqangeles@gmail.com> * Update OracleGrammar.php * Normalize case and adjust size calculation in SQL query Lowercased table names, schema, and collation parameters to ensure consistency. Also simplified the size calculation by removing the rounding and conversion to megabytes. --------- Co-authored-by: Luca Zangheri <luca.zangheri@wuerth.it> Co-authored-by: Arjay Angeles <aqangeles@gmail.com>
- Loading branch information
1 parent
39be2bd
commit 0fe8b7e
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters