diff options
author | unknown <sergefp@mysql.com> | 2007-09-14 21:15:57 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2007-09-14 21:15:57 +0400 |
commit | 1684d47db30781deb6546d7df761dd96376f6805 (patch) | |
tree | 272980d4142a747cca8e337391ff63d28dd80e19 | |
parent | fd3d146fe458d7390c3b26767cad2788cb0cb253 (diff) | |
download | mariadb-git-1684d47db30781deb6546d7df761dd96376f6805.tar.gz |
Fix compile failure on windows
-rw-r--r-- | sql/item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index 9400399e177..655159ab752 100644 --- a/sql/item.h +++ b/sql/item.h @@ -603,7 +603,7 @@ public: smallest possible value of LONGLONG_MIN */ virtual longlong val_int_endpoint(bool left_endp, bool *incl_endp) - { DBUG_ASSERT(0); } + { DBUG_ASSERT(0); return 0; } /* valXXX methods must return NULL or 0 or 0.0 if null_value is set. */ |