MySQL 5.6.14 Source Code Document
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
MySQL 5.6.14 Source Code Document
replication of field metadata works.
ndbapi_simple.cpp
ndbapi_async.cpp
ndbapi_async1.cpp
ndbapi_retries.cpp
ndbapi_simple_index.cpp
ndbapi_scan.cpp
ndbapi_event.cpp
Adaptive Send Algorithm
MySQL Cluster Concepts
basic.cpp
common.hpp
br_test.cpp
ptr_binding_test.cpp
The Performance Schema main page
Performance schema: instrumentation interface page.
Performance schema: the aggregates page.
Todo List
Deprecated List
Modules
Namespaces
Classes
Files
File List
client
cmake
cmd-line-utils
dbug
extra
include
libevent
libmysql
libmysqld
libservices
mysql-test
mysys
mysys_ssl
packaging
plugin
regex
scripts
sql
sql-common
storage
archive
blackhole
csv
example
federated
heap
innobase
myisam
myisammrg
ndb
clusterj
include
ndbapi-examples
src
test
crund
include
ndbapi
acrt
bank
bench
asyncGenerator.cpp
dbGenerator.h
dbPopulate.cpp
dbPopulate.h
macros.h
mainAsyncGenerator.cpp
mainPopulate.cpp
ndb_async1.cpp
ndb_async2.cpp
ndb_error.hpp
ndb_schema.hpp
ndb_user_transaction.cpp
ndb_user_transaction2.cpp
ndb_user_transaction3.cpp
ndb_user_transaction4.cpp
ndb_user_transaction5.cpp
ndb_user_transaction6.cpp
testData.h
testDefinitions.h
userInterface.cpp
userInterface.h
acid.cpp
acid2.cpp
adoInsertRecs.cpp
asyncGenerator.cpp
benchronja.cpp
bulk_copy.cpp
cdrserver.cpp
celloDb.cpp
create_all_tabs.cpp
create_tab.cpp
drop_all_tabs.cpp
flex_bench_mysql.cpp
flexAsynch.cpp
flexBench.cpp
flexHammer.cpp
flexScan.cpp
flexTimedAsynch.cpp
flexTT.cpp
index.cpp
index2.cpp
initronja.cpp
InsertRecs.cpp
interpreterInTup.cpp
mainAsyncGenerator.cpp
msa.cpp
ndb_async1.cpp
ndb_async2.cpp
ndb_user_populate.cpp
ndb_user_transaction.cpp
ndb_user_transaction2.cpp
ndb_user_transaction3.cpp
ndb_user_transaction4.cpp
ndb_user_transaction5.cpp
ndb_user_transaction6.cpp
ndbapi_50compat0.cpp
ndbapi_50compat1.cpp
reorg_tab.cpp
restarter.cpp
restarter2.cpp
restarts.cpp
ScanFilter.hpp
ScanFunctions.hpp
ScanInterpretTest.hpp
size.cpp
slow_select.cpp
test_event.cpp
test_event_merge.cpp
test_event_multi_table.cpp
testBackup.cpp
testBasic.cpp
testBasicAsynch.cpp
testBitfield.cpp
testBlobs.cpp
testDataBuffers.cpp
testDeadlock.cpp
testDict.cpp
testIndex.cpp
testIndexStat.cpp
testInterpreter.cpp
testLcp.cpp
testLimits.cpp
testMgm.cpp
testMgmd.cpp
testMgmDisconnect.c
testNativeDefault.cpp
testNdbApi.cpp
testNdbinfo.cpp
testNDBT.cpp
testNodeRestart.cpp
testOIBasic.cpp
testOperations.cpp
testOrderedIndex.cpp
testPartitioning.cpp
testReadPerf.cpp
testReconnect.cpp
testRestartGci.cpp
testScan.cpp
testScanFilter.cpp
testScanInterpreter.cpp
testScanPerf.cpp
testSingleUserMode.cpp
testSpj.cpp
testSRBank.cpp
testSystemRestart.cpp
testTimeout.cpp
testTransactions.cpp
testUpgrade.cpp
TraceNdbApi.cpp
userInterface.cpp
VerifyNdbApi.cpp
newtonapi
run-test
src
tools
tools
perfschema
strings
support-files
tests
unittest
vio
zlib
File Members
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
mainPopulate.cpp
1
/*
2
Copyright (C) 2005, 2006, 2008 MySQL AB, 2008 Sun Microsystems, Inc.
3
All rights reserved. Use is subject to license terms.
4
5
This program is free software; you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation; version 2 of the License.
8
9
This program is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
GNU General Public License for more details.
13
14
You should have received a copy of the GNU General Public License
15
along with this program; if not, write to the Free Software
16
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
*/
18
19
#include <ndb_global.h>
20
#include <ndb_opts.h>
21
22
#include "userInterface.h"
23
#include "dbPopulate.h"
24
#include <NdbMain.h>
25
#include <NdbOut.hpp>
26
#include <random.h>
27
#include <NDBT.hpp>
28
29
#ifdef __cplusplus
30
extern
"C"
{
31
#endif
32
int
useTableLogging;
33
#ifdef __cplusplus
34
}
35
#endif
36
37
38
static
39
void
usage(
const
char
*prog)
40
{
41
42
ndbout_c(
43
"Usage: %s [-l]\n"
44
" -l Use logging and checkpointing on tables\n"
,
45
prog);
46
47
exit(1);
48
}
49
50
NDB_COMMAND(DbCreate,
"DbCreate"
,
"DbCreate"
,
"DbCreate"
, 16384)
51
{
52
ndb_init();
53
int
i
;
54
UserHandle
*uh;
55
56
useTableLogging = 0;
57
58
for
(i = 1; i<argc; i++){
59
if
(strcmp(argv[i],
"-l"
) == 0){
60
useTableLogging = 1;
61
}
else
{
62
usage(argv[0]);
63
return
0;
64
}
65
}
66
67
ndbout_c(
"Using %s tables"
,
68
useTableLogging ?
"logging"
:
"temporary"
);
69
70
myRandom48Init(0x3e6f);
71
72
uh = userDbConnect(1,
"TEST_DB"
);
73
dbPopulate(uh);
74
userDbDisconnect(uh);
75
76
return
NDBT_ProgramExit(NDBT_OK);
77
}
storage
ndb
test
ndbapi
bench
mainPopulate.cpp
Generated on Sat Nov 9 2013 01:28:19 for MySQL 5.6.14 Source Code Document by
1.8.1.2