1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for Bug #2075 - negative default values not accepted for integer columns

Allow numeric literals have a sign
This commit is contained in:
antony@ltantony.rdg.cyberkinetica.homeunix.net
2003-12-11 00:28:25 +00:00
parent 7576f1a81f
commit 7f83c17637
3 changed files with 35 additions and 5 deletions

View File

@ -423,6 +423,17 @@ strnull varchar(10) YES NULL
intg int(11) YES NULL
rel double YES NULL
drop table t1, t2;
create table t1(name varchar(10), age smallint default -1);
describe t1;
Field Type Null Key Default Extra
name varchar(10) YES NULL
age smallint(6) YES -1
create table t2(name varchar(10), age smallint default - 1);
describe t2;
Field Type Null Key Default Extra
name varchar(10) YES NULL
age smallint(6) YES -1
drop table t1, t2;
create database test_$1;
use test_$1;
select database();