aboutsummaryrefslogtreecommitdiff
path: root/enginedata.h
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-05-23 20:51:49 +0200
committertomsmeding <hallo@tomsmeding.nl>2015-05-23 20:51:49 +0200
commit8bf922f71c0e37ac590f9527a6cf1a6d2cab793c (patch)
treeafa69d9778442c203e604e3cc1dc88cf7a1a97c1 /enginedata.h
parent91f7a1c413a8be587fdc0b357fe6412e89d16d7d (diff)
UpdateQuery
Diffstat (limited to 'enginedata.h')
-rw-r--r--enginedata.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/enginedata.h b/enginedata.h
index 2b7ca96..071dd93 100644
--- a/enginedata.h
+++ b/enginedata.h
@@ -12,9 +12,12 @@ struct ColHeader;
struct Table;
struct RowItem{
- int32_t rh_int32;
- uint32_t rh_uint32;
- unsigned char *rh_bytes;
+ union{
+ int32_t rh_int32;
+ uint32_t rh_uint32;
+ unsigned char *rh_bytes;
+ } v;
+ RowItem copy(const ColHeader&);
};
enum ColHeaderType{