diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2015-05-01 15:59:12 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2015-05-01 15:59:12 +0200 |
commit | f5b05a11c1d8f5817b957f5397c288146a348b29 (patch) | |
tree | 185f88c7b78f1189782b45e2e03063b31b647990 /storage/connect/tabjson.h | |
parent | eae8318b19da168e4676fe3da5b2f8665cb4104c (diff) | |
download | mariadb-git-f5b05a11c1d8f5817b957f5397c288146a348b29.tar.gz |
- Fix bug on updating JSON expanded values
modified:
json.result
tabjson.cpp
tabjson.h
- Fix bug on multiple tables (directories must be eliminated from file list)
modified:
tabmul.cpp
- Update version
modified:
ha_connect.cc
- Typo
modified:
global.h
ha_connect.cc
tabtbl.cpp
tabutil.cpp
value.cpp
Diffstat (limited to 'storage/connect/tabjson.h')
-rw-r--r-- | storage/connect/tabjson.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/connect/tabjson.h b/storage/connect/tabjson.h index 7e9896c3b75..10b9a9a9cc3 100644 --- a/storage/connect/tabjson.h +++ b/storage/connect/tabjson.h @@ -25,7 +25,8 @@ typedef struct _jnode { PVAL CncVal; // To cont value used for OP_CNC PVAL Valp; // The internal array VALUE int Rank; // The rank in array - int Nx; // Same row number + int Rx; // Read row number + int Nx; // Next to read row number } JNODE, *PJNODE; /***********************************************************************/ |