diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-07-26 15:33:03 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-07-26 15:33:03 +0200 |
commit | 7c15c522920b8e44f1b3030e068bffbed49c51bd (patch) | |
tree | eca7f9ebfb3815b46244a603924723535afc53e7 /storage/connect/tabutil.cpp | |
parent | 80ee86d2aad2ddee41cc1806bb7a5d390555b031 (diff) | |
download | mariadb-git-7c15c522920b8e44f1b3030e068bffbed49c51bd.tar.gz |
- Restore comment handling commented out in R3772.
Should be fixed by R3776
modified:
storage/connect/tabutil.cpp
Diffstat (limited to 'storage/connect/tabutil.cpp')
-rw-r--r-- | storage/connect/tabutil.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/connect/tabutil.cpp b/storage/connect/tabutil.cpp index 6f1305f476c..93b8e7a4263 100644 --- a/storage/connect/tabutil.cpp +++ b/storage/connect/tabutil.cpp @@ -227,10 +227,10 @@ PQRYRES TabColumns(PGLOBAL g, THD *thd, const char *db, crp = crp->Next; // Remark - // For Valgrind until bug on comment storage is fixed -// if (fp->comment.length > 0 && (fld = fp->comment.str)) -// crp->Kdata->SetValue(fld, fp->comment.length, i); -// else + // For Valgrind + if (fp->comment.length > 0 && (fld = fp->comment.str)) + crp->Kdata->SetValue(fld, fp->comment.length, i); + else crp->Kdata->Reset(i); crp = crp->Next; // New |