From: Date: October 27 2008 7:00pm Subject: bzr commit into mysql-6.0-falcon-team branch (cpowers:2884) Bug#39695 List-Archive: http://lists.mysql.com/commits/57140 X-Bug: 39695 Message-Id: <20081027180022.D30D61DB072C@xeno.mysql.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At file:///home/cpowers/work/dev/dev-10/mysql/ 2884 Christopher Powers 2008-10-27 Bug#39695 "Crash in SRLUpdateRecords::thaw during falcon_chill_thaw_test" Fixed compile warning. modified: storage/falcon/Record.cpp per-file messages: storage/falcon/Record.cpp Fixed compile warning. Removed unnecessary try/catch. === modified file 'storage/falcon/Record.cpp' --- a/storage/falcon/Record.cpp 2008-10-24 05:35:38 +0000 +++ b/storage/falcon/Record.cpp 2008-10-27 18:00:09 +0000 @@ -631,8 +631,6 @@ int Record::getEncodedSize() void Record::getEncodedValue(int fieldId, Value *value) { - try - { switch (encoding) { case shortVector: @@ -665,11 +663,6 @@ void Record::getEncodedValue(int fieldId NOT_YET_IMPLEMENTED; } } - catch (SQLException& exception) - { - int code = exception.getSqlcode(); - } -} void Record::finalize(Transaction *transaction) {