Commit 76d2ecea authored by unknown's avatar unknown
Browse files

ndb - bug#19285 minor fixes


ndb/src/ndbapi/NdbBlob.cpp:
  bug#19285 minor fixes
ndb/src/ndbapi/ndberror.c:
  bug#19285 minor fixes
parent e9bfc415
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -753,7 +753,7 @@ NdbBlob::writeData(const void* data, Uint32 bytes)
  }
  const char* buf = static_cast<const char*>(data);
  int ret = writeDataPrivate(buf, bytes);
  DBUG_RETURN(0);
  DBUG_RETURN(ret);
}

int
+1 −1
Original line number Diff line number Diff line
@@ -521,7 +521,7 @@ ErrorBundle ErrorCodes[] = {
  { 4270, IE, "Unknown blob error" },
  { 4335, AE, "Only one autoincrement column allowed per table. Having a table without primary key uses an autoincremented hidden key, i.e. a table without a primary key can not have an autoincremented column" },
  { 4271, AE, "Invalid index object, not retrieved via getIndex()" },
  { 4275, IE, "The blob method is incompatible with operation type or lock mode" }
  { 4275, AE, "The blob method is incompatible with operation type or lock mode" }
};

static