diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2014-05-30 14:53:15 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2014-05-30 14:53:15 +0200 |
commit | c1973c80d40a8a56b6c08e71422d37ccc87cb8f0 (patch) | |
tree | f6bb5be51ce0be92ddd98caaa75db2ef2c9cd7ae /storage/connect/colblk.h | |
parent | cd185c1468805a297056e4124ec581eac0bc858e (diff) | |
download | mariadb-git-c1973c80d40a8a56b6c08e71422d37ccc87cb8f0.tar.gz |
- Eliminate virtual columns from CSV and FMT table fields
modified:
storage/connect/colblk.h
storage/connect/reldef.h
storage/connect/tabfmt.cpp
- Fix length specification and writing (when using FIELD_FORMAT) of DECIMAL columns
modified:
storage/connect/ha_connect.cc
storage/connect/tabdos.cpp
- Add the D field_format option (specifying the decimal separator character)
modified:
storage/connect/tabdos.cpp
storage/connect/tabdos.h
storage/connect/tabfmt.cpp
Diffstat (limited to 'storage/connect/colblk.h')
-rw-r--r-- | storage/connect/colblk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/colblk.h b/storage/connect/colblk.h index e1d4fc7e948..a340ee4450a 100644 --- a/storage/connect/colblk.h +++ b/storage/connect/colblk.h @@ -55,6 +55,7 @@ class DllExport COLBLK : public XOBJECT { PSZ GetFmt(void) {return (Cdp) ? Cdp->Fmt : NULL;} bool IsUnsigned(void) {return Unsigned;} bool IsNullable(void) {return Nullable;} + bool IsVirtual(void) {return Cdp->IsVirtual();} void SetNullable(bool b) {Nullable = b;} // Methods |