We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf307df commit ef224caCopy full SHA for ef224ca
1 file changed
tools/DBQuery.cpp
@@ -147,14 +147,14 @@ int main(int argc, const char* argv[])
147
{
148
param.host = "localhost";
149
param.port = 12321;
150
- param.hint = atoi(argv[1]);
+ param.hint = atoll(argv[1]);
151
param.sql = argv[2];
152
}
153
else if (argc == 4)
154
155
156
157
158
param.tablename = argv[2];
159
param.sql = argv[3];
160
0 commit comments