fix:fix bound index error in schemaless
This commit is contained in:
parent
c66acc7c7d
commit
5aadb9d295
|
@ -1780,7 +1780,7 @@ int32_t smlBindData(void* handle, SArray* tags, SArray* colsSchema, SArray* cols
|
||||||
|
|
||||||
// 1. set the parsed value from sql string
|
// 1. set the parsed value from sql string
|
||||||
for (int c = 0, j = 0; c < spd->numOfBound; ++c) {
|
for (int c = 0, j = 0; c < spd->numOfBound; ++c) {
|
||||||
SSchema* pColSchema = &pSchema[spd->boundColumns[c] - 1];
|
SSchema* pColSchema = &pSchema[spd->boundColumns[c]];
|
||||||
|
|
||||||
param.schema = pColSchema;
|
param.schema = pColSchema;
|
||||||
getSTSRowAppendInfo(pBuilder->rowType, spd, c, ¶m.toffset, ¶m.colIdx);
|
getSTSRowAppendInfo(pBuilder->rowType, spd, c, ¶m.toffset, ¶m.colIdx);
|
||||||
|
|
Loading…
Reference in New Issue