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

Avoid expensive select_star on dashboard bootstrap data #5424

Merged
merged 1 commit into from
Jul 18, 2018

Commits on Jul 18, 2018

  1. Avoid expensive select_star on dashboard bootstrap data

    The dashboard page bootstrap data currently attempts to generate the
    `SELECT` statement with column name details for each table represented
    in the dash. This means it calls the database(s) and waits for column
    details prior to returning any HTML.
    
    This makes the default select_star property generate a simple
    `SELECT *` with no column details instead, which doesn't require
    interogating the DBs.
    mistercrunch committed Jul 18, 2018
    Configuration menu
    Copy the full SHA
    e521864 View commit details
    Browse the repository at this point in the history