diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2018-02-12 16:26:12 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2018-02-12 16:26:12 +0100 |
commit | 273233119c575d34d1c7b6cf649150f36d200242 (patch) | |
tree | dd0bcb690c977939c858c0f5f36188a5841b2920 /storage/connect/tabdos.h | |
parent | efe80675f573b6255a399308fae1ede8e8fc4501 (diff) | |
download | mariadb-git-273233119c575d34d1c7b6cf649150f36d200242.tar.gz |
- Fix a bug causing CONNECT to loop when expanding a JSON column
when the expanded column value is null or void array.
- Adding the FullArray option to JSON tables.
- Skipping expanded JSON lines when the expanded column value is null.
modified: storage/connect/connect.cc
modified: storage/connect/tabdos.h
modified: storage/connect/tabjson.cpp
modified: storage/connect/tabjson.h
Diffstat (limited to 'storage/connect/tabdos.h')
-rw-r--r-- | storage/connect/tabdos.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/tabdos.h b/storage/connect/tabdos.h index 948b357dc1f..bdde37adaad 100644 --- a/storage/connect/tabdos.h +++ b/storage/connect/tabdos.h @@ -29,6 +29,7 @@ class DllExport DOSDEF : public TABDEF { /* Logical table description */ friend class TXTFAM; friend class DBFBASE; friend class UNZIPUTL; + friend class JSONCOL; public: // Constructor DOSDEF(void); |