summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <patg@krsna.patg.net>2004-06-25 19:11:46 -0700
committerunknown <patg@krsna.patg.net>2004-06-25 19:11:46 -0700
commit8872eda689dcb21ca323da5e1ccc17062d0830f4 (patch)
tree80a45443ede248a1defb22f1811330bba0079129 /scripts
parent7b9a0dd948de713dccfd9a54cee226d8ccc025c1 (diff)
downloadmariadb-git-8872eda689dcb21ca323da5e1ccc17062d0830f4.tar.gz
mysql_create_system_tables.sh:
fix to user table during make_win_src_distribution scripts/mysql_create_system_tables.sh: fix to user table during make_win_src_distribution
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_create_system_tables.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/mysql_create_system_tables.sh b/scripts/mysql_create_system_tables.sh
index 9ab5734d549..988dcec90f8 100644
--- a/scripts/mysql_create_system_tables.sh
+++ b/scripts/mysql_create_system_tables.sh
@@ -160,7 +160,10 @@ then
INSERT INTO user (host,user) values ('localhost','');"
else
i_u="$i_u
- INSERT INTO user VALUES ('localhost','','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0);"
+ INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0);
+ INSERT INTO user VALUES ('%','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0);
+ INSERT INTO user VALUES ('localhost','','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0);
+ INSERT INTO user VALUES ('%','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0);"
fi
fi
fi