From c07e9f37f08f1a1c327549939d2ff862a4c116a8 Mon Sep 17 00:00:00 2001 From: luca Date: Thu, 1 Oct 2009 13:20:59 +0000 Subject: [PATCH] Patch level :10.0 456 Files correlati : Ricompilazione Demo : [ ] Commento : sistemato errore nella ricompattazione batch delle rmovana; problema della fase di origine vuota e di destinazione piena in ripartizione: in ricompattamento scriveva sciocchezze git-svn-id: svn://10.65.10.50/trunk@19362 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- ca/calib01.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ca/calib01.cpp b/ca/calib01.cpp index ddb3afc38..080c64b1e 100755 --- a/ca/calib01.cpp +++ b/ca/calib01.cpp @@ -2129,8 +2129,7 @@ void ca_taglia_campo(TRectype& src, const char* campo_src, TRectype& dst, const void ca_copia_campo(const TRectype& src, const char* campo_src, TRectype& dst, const char* campo_dst) { const TString& valore = src.get(campo_src); - if (!valore.blank()) - dst.put(campo_dst, valore); + dst.put(campo_dst, valore); } bool ca_implode_rows(const TRecord_array& input_rows, TRecord_array& compact_rows)