summaryrefslogtreecommitdiff
path: root/ndb/test/ndbapi/testReadPerf.cpp
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.ndb.mysql.com>2004-10-21 19:02:01 +0000
committerunknown <tomas@poseidon.ndb.mysql.com>2004-10-21 19:02:01 +0000
commit63920158ced1f2b343b14b723c2f5d9a92b06e62 (patch)
treeeba95bbc6b196e98a9035458df02703db497dd86 /ndb/test/ndbapi/testReadPerf.cpp
parent277c84e2b12233624bdcc8f904bf86bbf9512e8e (diff)
downloadmariadb-git-63920158ced1f2b343b14b723c2f5d9a92b06e62.tar.gz
changed to call internal snprintf/vsnprintf
Diffstat (limited to 'ndb/test/ndbapi/testReadPerf.cpp')
-rw-r--r--ndb/test/ndbapi/testReadPerf.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ndb/test/ndbapi/testReadPerf.cpp b/ndb/test/ndbapi/testReadPerf.cpp
index 7cf3755d66f..8d0d78cbe8c 100644
--- a/ndb/test/ndbapi/testReadPerf.cpp
+++ b/ndb/test/ndbapi/testReadPerf.cpp
@@ -130,9 +130,9 @@ main(int argc, const char** argv){
for(int i = optind; i<argc; i++){
const char * T = argv[i];
g_info << "Testing " << T << endl;
- snprintf(g_table, sizeof(g_table), T);
- snprintf(g_ordered, sizeof(g_ordered), "IDX_O_%s", T);
- snprintf(g_unique, sizeof(g_unique), "IDX_U_%s", T);
+ BaseString::snprintf(g_table, sizeof(g_table), T);
+ BaseString::snprintf(g_ordered, sizeof(g_ordered), "IDX_O_%s", T);
+ BaseString::snprintf(g_unique, sizeof(g_unique), "IDX_U_%s", T);
if(create_table())
goto error;
if(load_table())