mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Update needed for SuSE 7.3
Update for autoconf 2.52
This commit is contained in:
@@ -76,7 +76,7 @@ CLEANFILES = @server_scripts@ \
|
||||
SUPERCLEANFILES = mysqlbug
|
||||
|
||||
# We want the right version and configure comand line in mysqlbug
|
||||
mysqlbug: ${top_builddir}/config.status ${top_builddir}/config.cache mysqlbug.sh
|
||||
mysqlbug: ${top_builddir}/config.status mysqlbug.sh
|
||||
|
||||
SUFFIXES = .sh
|
||||
|
||||
|
@@ -17,8 +17,9 @@ echo ""
|
||||
echo "If your tables are already up to date or partially up to date you will"
|
||||
echo "get some warnings about 'Duplicated column name'. You can safely ignore these!"
|
||||
|
||||
# Add fields that can be used to limit number of questions and connections
|
||||
# for some users.
|
||||
|
||||
@bindir@/mysql -f --user=root --password="$root_password" --host="$host" mysql <<END_OF_DATA
|
||||
alter table user add max_questions int(11) unsigned DEFAULT 0 NOT NULL;
|
||||
alter table user add max_updates int(11) unsigned DEFAULT 0 NOT NULL;
|
||||
alter table user add max_connections int(11) unsigned DEFAULT 0 NOT NULL;
|
||||
alter table user add max_questions int(11) NOT NULL, add max_updates int(11) unsigned NOT NULL, add max_connections int(11) unsigned NOT NULL;
|
||||
END_OF_DATA
|
||||
|
Reference in New Issue
Block a user