mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Fixed pb failure.
Problem: Warnings for truncated data were generated on hosts with long host names because @@hostname was inserted into a CHAR(40) column. Fix: Change CHAR(40) to TEXT.
This commit is contained in:
@@ -71,9 +71,9 @@ source include/have_binlog_format_statement.inc;
|
||||
--echo ==== Setup tables ====
|
||||
|
||||
CREATE TABLE t1 (a INT);
|
||||
CREATE TABLE t2 (a CHAR(40));
|
||||
CREATE TABLE t2 (a TEXT);
|
||||
CREATE TABLE t3 (a INT AUTO_INCREMENT PRIMARY KEY);
|
||||
CREATE TABLE trigger_table (a CHAR(7));
|
||||
CREATE TABLE trigger_table (a TEXT);
|
||||
CREATE TABLE trigger_table2 (a INT);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user