You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-04 04:42:30 +03:00
Wrote a component test, which has a stand-in server thread
in place of an actual StorageManager. The server thread returns the same error over and over again. Used that test to debug some basic comm stuff & find errors in error handling.
This commit is contained in:
@ -90,7 +90,7 @@ IDBDataFile* SMFileFactory::open(const char *filename, const char *mode, unsigne
|
||||
SMComm *comm = SMComm::get();
|
||||
struct stat _stat;
|
||||
int err = comm->open(filename, posix_flags, &_stat);
|
||||
if (!err)
|
||||
if (err)
|
||||
return NULL;
|
||||
|
||||
SMDataFile *ret = new SMDataFile(filename, posix_flags, _stat);
|
||||
|
Reference in New Issue
Block a user