espresso98

Results 3 issues of espresso98

## Bug Report ### 1. Minimal reproduce step (Required) ```sql DROP TABLE IF EXISTS t, tj; CREATE TABLE t(a bigint, b bigint, c bigint); INSERT INTO t VALUES (1, 2,...

type/bug
sig/planner
severity/minor
feature/developing

## Bug Report ### 1. Minimal reproduce step ```sql SET sql_mode=''; DROP TABLE IF EXISTS t1; CREATE TABLE t1 (s1 DATETIME(2)); INSERT INTO t1 VALUES (TIMESTAMP '0001-01-01 00:00:00.05'); SELECT TIMESTAMPADD(second,...

type/bug
sig/execution
severity/major
affects-5.0
affects-5.1
affects-5.2
affects-5.3
affects-5.4
affects-6.0
affects-6.1
affects-6.2
affects-6.3

When selecting a truncated incorrect value, mysql tester crashes. ```sql select 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 as x; select 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 + 1 as x; ``` ```sql create table t1 (s varchar(100)); insert into t1...