diff options
author | Shauren <shauren.trinity@gmail.com> | 2018-05-12 16:24:41 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-05-12 16:24:41 +0200 |
commit | 9829c119c0fd0879b4b7b811d346287e4279496f (patch) | |
tree | 70a5076d5a712036a638eed9f4b420e38099a672 /src/common/DataStores/DB2FileLoader.h | |
parent | 570da6653358beefc322d7d81dcd17d4b4b44f93 (diff) |
Core/DataStores: Fixed loading db2 locale strings
Diffstat (limited to 'src/common/DataStores/DB2FileLoader.h')
-rw-r--r-- | src/common/DataStores/DB2FileLoader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/DataStores/DB2FileLoader.h b/src/common/DataStores/DB2FileLoader.h index 2bc273d195b..e1f8888dbe3 100644 --- a/src/common/DataStores/DB2FileLoader.h +++ b/src/common/DataStores/DB2FileLoader.h @@ -140,7 +140,7 @@ public: bool Load(DB2FileSource* source, DB2FileLoadInfo const* loadInfo); char* AutoProduceData(uint32& count, char**& indexTable, std::vector<char*>& stringPool); - char* AutoProduceStrings(char* dataTable, uint32 locale); + char* AutoProduceStrings(char** indexTable, uint32 indexTableSize, uint32 locale); void AutoProduceRecordCopies(uint32 records, char** indexTable, char* dataTable); uint32 GetCols() const { return _header.TotalFieldCount; } |