1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00

MCOL-5065: return values of getSystemReady/getSystemQueryReady should be > 0 (#2355)

This commit is contained in:
benthompson15
2022-05-02 17:23:07 -05:00
committed by GitHub
parent ec2e490737
commit 0c2f6674a2

View File

@@ -292,7 +292,7 @@ extern "C"
try try
{ {
if (dbrm.getSystemReady() && dbrm.getSystemQueryReady()) if (dbrm.getSystemReady() > 0 && dbrm.getSystemQueryReady() > 0)
{ {
return 1; return 1;
} }