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

Create table unique index parameters problem fixed #193

Merged
merged 4 commits into from
Jun 6, 2023

Commits on May 26, 2023

  1. SQL: CREATE TABLE distributors (

                  did     int,
                  name    varchar(40),
                  UNIQUE (name) WITH (fillfactor=70)
                )
                WITH (fillfactor=70);
    Failure/Error: it { is_expected.to eq oneline_query }
    
           expected: "CREATE TABLE distributors (did int, name varchar(40), UNIQUE (name) WITH (fillfactor=70)) WITH (fillfactor=70)"
                got: "CREATE TABLE distributors (did int, name varchar(40), UNIQUE (name)) WITH (fillfactor=70)"
    Mehmet Emin Karakaş committed May 26, 2023
    Configuration menu
    Copy the full SHA
    c7453fd View commit details
    Browse the repository at this point in the history

Commits on May 27, 2023

  1. errors fixed

    Mehmet Emin Karakaş committed May 27, 2023
    Configuration menu
    Copy the full SHA
    597a94a View commit details
    Browse the repository at this point in the history
  2. clear spaces

    Mehmet Emin Karakaş committed May 27, 2023
    Configuration menu
    Copy the full SHA
    c5a7a92 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. SQL: SHOW ALL

    expected: "SHOW ALL"
    got: "SHOW SESSION ALL"
    Mehmet Emin Karakaş committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    5b26910 View commit details
    Browse the repository at this point in the history