提交 702bf45c 编写于 作者: sangshuduo's avatar sangshuduo

fix double-fix on hash entry++.

上级 14243057
...@@ -32,15 +32,15 @@ matrix: ...@@ -32,15 +32,15 @@ matrix:
- cd debug - cd debug
script: script:
- cmake .. - cmake .. > /dev/null
- make - make > /dev/null
after_success: after_success:
- |- - |-
case $TRAVIS_OS_NAME in case $TRAVIS_OS_NAME in
linux) linux)
cd ${TRAVIS_BUILD_DIR}/debug cd ${TRAVIS_BUILD_DIR}/debug
make install || travis_terminate $? make install > /dev/null || travis_terminate $?
pip install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python2/ pip install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python2/
pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/ pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/
...@@ -135,15 +135,15 @@ matrix: ...@@ -135,15 +135,15 @@ matrix:
- cd debug - cd debug
script: script:
- cmake -DCOVER=true .. - cmake -DCOVER=true .. > /dev/null
- make - make > /dev/null
after_success: after_success:
- |- - |-
case $TRAVIS_OS_NAME in case $TRAVIS_OS_NAME in
linux) linux)
cd ${TRAVIS_BUILD_DIR}/debug cd ${TRAVIS_BUILD_DIR}/debug
make install || travis_terminate $? make install > /dev/null || travis_terminate $?
pip install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python2/ pip install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python2/
pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/ pip3 install --user ${TRAVIS_BUILD_DIR}/src/connector/python/linux/python3/
...@@ -208,8 +208,8 @@ matrix: ...@@ -208,8 +208,8 @@ matrix:
- cd debug - cd debug
script: script:
- cmake .. - cmake .. > /dev/null
- make - make > /dev/null
# - os: osx # - os: osx
# language: c # language: c
...@@ -225,5 +225,5 @@ matrix: ...@@ -225,5 +225,5 @@ matrix:
# - cd ${TRAVIS_BUILD_DIR} # - cd ${TRAVIS_BUILD_DIR}
# - mkdir debug # - mkdir debug
# - cd debug # - cd debug
# - cmake .. # - cmake .. > /dev/null
# - make # - make > /dev/null
...@@ -520,7 +520,6 @@ SHashMutableIterator *taosHashCreateIter(SHashObj *pHashObj) { ...@@ -520,7 +520,6 @@ SHashMutableIterator *taosHashCreateIter(SHashObj *pHashObj) {
static SHashNode *getNextHashNode(SHashMutableIterator *pIter) { static SHashNode *getNextHashNode(SHashMutableIterator *pIter) {
assert(pIter != NULL); assert(pIter != NULL);
pIter->entryIndex++;
pIter->entryIndex++; pIter->entryIndex++;
while (pIter->entryIndex < pIter->pHashObj->capacity) { while (pIter->entryIndex < pIter->pHashObj->capacity) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册