Skip to content

Commit

Permalink
fix(mysql-setup): quote database name (#9169)
Browse files Browse the repository at this point in the history
  • Loading branch information
darnaut authored Nov 3, 2023
1 parent 0731111 commit ddb4e1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/mysql-setup/init.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- create datahub database
CREATE DATABASE IF NOT EXISTS DATAHUB_DB_NAME CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
USE DATAHUB_DB_NAME;
CREATE DATABASE IF NOT EXISTS `DATAHUB_DB_NAME` CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
USE `DATAHUB_DB_NAME`;

-- create metadata aspect table
create table if not exists metadata_aspect_v2 (
Expand Down

0 comments on commit ddb4e1b

Please sign in to comment.