Skip to content

Commit 227c93a

Browse files
Bug#28923060 TEST_NDBINFO FAILS DUE TO UNEXPECTED NUMBER OF ROWS IN NDBINFO.CPUSTAT_1SEC
Post push fix. Remove usage of nullptr in patch for version mysql-5.7-cluster-7.6.
1 parent 23c6cc8 commit 227c93a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/ndb/test/ndbapi/testNdbinfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ int runScanAll(NDBT_Context* ctx, NDBT_Step* step)
148148
ndbout << "table("<<tableId<<"): " << table->getName() << endl;
149149

150150
int last_rows;
151-
bool rows_may_increase = (strstr(table->getName(), "cpustat_") != nullptr);
151+
bool rows_may_increase = (strstr(table->getName(), "cpustat_") != NULL);
152152
for (int l = 0; l < ctx->getNumLoops(); l++)
153153
{
154154
if (ctx->isTestStopped())

0 commit comments

Comments
 (0)