From 5d877d7f181410e7a0b34f25ee912ff14409c90d Mon Sep 17 00:00:00 2001 From: "rosenfield.albert" Date: Tue, 2 Sep 2008 07:21:23 +0000 Subject: [PATCH] Avoid overflowing the target compatibility box. --- source/exportsql.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exportsql.pas b/source/exportsql.pas index 833211f1..4b51e85c 100644 --- a/source/exportsql.pas +++ b/source/exportsql.pas @@ -200,7 +200,7 @@ begin with target_versions do begin Add( IntToStr( SQL_VERSION_ANSI ) + '=ANSI SQL' ); - Add( IntToStr( CWin.mysql_version ) + '=Same as source ('+CWin.GetVar('SELECT VERSION()') +')' ); + Add( IntToStr( CWin.mysql_version ) + '=Same as source (' + ConvertServerVersion(CWin.mysql_version) + ')'); Add( '50100=HeidiSQL w/ MySQL Server 5.1' ); Add( '50000=HeidiSQL w/ MySQL Server 5.0' ); Add( '40100=HeidiSQL w/ MySQL Server 4.1' );