summaryrefslogtreecommitdiff
path: root/mysql-test/r/grant.result
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-01-14 17:09:35 -0800
committerjimw@mysql.com <>2005-01-14 17:09:35 -0800
commit01ddc370f0eda1f605ca8be426f86acef9722ff1 (patch)
treeb3fea521e888f8180463963cc83084bed4edbf87 /mysql-test/r/grant.result
parent25fde2d0921267c56dbe5349d49fd06ad9ccb002 (diff)
downloadmariadb-git-01ddc370f0eda1f605ca8be426f86acef9722ff1.tar.gz
Enable warnings for 'no default' fields being set to default when they
are not specified in an insert. Most of these changes are actually to clean up the test suite to either specify defaults to avoid warnings, or add the warnings to the results. Related to bug #5986.
Diffstat (limited to 'mysql-test/r/grant.result')
-rw-r--r--mysql-test/r/grant.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/grant.result b/mysql-test/r/grant.result
index e5f7f535ae2..2eaf30f802d 100644
--- a/mysql-test/r/grant.result
+++ b/mysql-test/r/grant.result
@@ -157,6 +157,10 @@ select 1;
1
1
insert into mysql.user (host, user) values ('localhost', 'test11');
+Warnings:
+Warning 1364 Field 'ssl_cipher' doesn't have a default value
+Warning 1364 Field 'x509_issuer' doesn't have a default value
+Warning 1364 Field 'x509_subject' doesn't have a default value
insert into mysql.db (host, db, user, select_priv) values
('localhost', 'a%', 'test11', 'Y'), ('localhost', 'ab%', 'test11', 'Y');
alter table mysql.db order by db asc;