Skip to content

Commit

Permalink
try restoring the identified by thing
Browse files Browse the repository at this point in the history
  • Loading branch information
choptastic committed Sep 7, 2023
1 parent 79eb813 commit 86ddbd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mysql/test.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ create database sql_bridge_test;
drop user if exists sql_bridge_user;
create user 'sql_bridge_user' identified by 'sql_bridge_test_password';
use sql_bridge_test;
grant all privileges on sql_bridge_test.* to 'sql_bridge_user'@'%';
grant all privileges on sql_bridge_test.* to 'sql_bridge_user'@'%' identified by 'sql_bridge_test_password';

drop table if exists fruit;
create table fruit (
Expand Down

0 comments on commit 86ddbd9

Please sign in to comment.