diff options
author | unknown <hf@deer.(none)> | 2005-04-06 15:49:55 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2005-04-06 15:49:55 +0500 |
commit | acd0dbd2703b6691acce6ff67278384f5ea5700d (patch) | |
tree | 42e6003f2a14a4294997321b48667f07293772d1 /mysql-test/r/row.result | |
parent | ec6ce01565bbb1a56b342a2dd4607869c0d93278 (diff) | |
download | mariadb-git-acd0dbd2703b6691acce6ff67278384f5ea5700d.tar.gz |
Stupid error message for 'insert "aaa"' into decimal column fixed
mysql-test/r/row.result:
test result fixed
sql/item.cc:
error message for the case of bad decimal value added
duplicated code removed
Diffstat (limited to 'mysql-test/r/row.result')
-rw-r--r-- | mysql-test/r/row.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/row.result b/mysql-test/r/row.result index 40a31563604..9734efb0797 100644 --- a/mysql-test/r/row.result +++ b/mysql-test/r/row.result @@ -15,7 +15,7 @@ select row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a')); row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a')) 1 Warnings: -Error 1366 Incorrect decimal value: '' for column '' at row -1 +Warning 1292 Truncated incorrect DECIMAL value: 'a' select row('a',0,3) IN (row(3,2,3), row('a','0','3'), row(1,3,3)); row('a',0,3) IN (row(3,2,3), row('a','0','3'), row(1,3,3)) 1 |