This commit is contained in:
Hongze Cheng 2021-11-03 17:57:49 +08:00
parent 8cfcade69d
commit b8304e818d
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@
#include "metaIdx.h"
#include "metaOptions.h"
#include "metaTbUid.h"
#include "metaTbOptions.h"
#ifdef __cplusplus
extern "C" {

View File

@ -17,7 +17,7 @@
int metaCreateTable(SMeta *pMeta, const STbOptions *pTbOptions) {
// Validate the tbOptions
if (metaValidateTbOptions(pTbOptions) < 0) {
if (metaValidateTbOptions(pMeta, pTbOptions) < 0) {
// TODO: handle error
return -1;
}