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

fix(mysql): quote database name in CREATE DATABASE statement #149

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Nov 28, 2022

  1. fix(mysql): quote database name in CREATE DATABASE statement

    In order to allow the full Unicode Basic Multilingual Plane in the
    database name, the name is now quoted in the CREATE DATABASE statement.
    
    Signed-off-by: Daniel Kraus <daniel.kraus@kubermatic.com>
    dakraus committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    fcdb022 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. fix(pgsql): quote database name in CREATE DATABASE statement

    In order to allow the full Unicode Basic Multilingual Plane in the
    database name, the name is now quoted in the CREATE DATABASE statement
    
    Note that quoting an identifier also makes it case-sensitive, whereas
    unquoted names are always folded to lower case.
    
    Signed-off-by: Daniel Kraus <daniel.kraus@kubermatic.com>
    dakraus committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    93ed570 View commit details
    Browse the repository at this point in the history