Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Implement compileTables missing method #868

Merged
merged 7 commits into from
Jul 31, 2024

Commits on Jul 15, 2024

  1. 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.
    Luca Zangheri committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    d1628fd View commit details
    Browse the repository at this point in the history
  2. Fix space

    Luca Zangheri committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    c6f70b4 View commit details
    Browse the repository at this point in the history
  3. Fix $owner comment missing space

    Luca Zangheri committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    16d2565 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. 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.
    Luca Zangheri committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    bc63764 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Update src/Oci8/Schema/Grammars/OracleGrammar.php

    Co-authored-by: Arjay Angeles <aqangeles@gmail.com>
    ErDiabIo and yajra authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    7c5716c View commit details
    Browse the repository at this point in the history
  2. Update OracleGrammar.php

    ErDiabIo authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    d62275b View commit details
    Browse the repository at this point in the history
  3. 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.
    Luca Zangheri committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    e6ac4e5 View commit details
    Browse the repository at this point in the history