mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-01 02:15:54 -04:00
this is a more "clean" conversion to 64 bit than the type-fixups branch, which does borrow some elements from it but has far less find and replace...it is about 98-99% done, notes to follow later
This commit is contained in:
@@ -59,12 +59,18 @@ namespace DB
|
||||
public:
|
||||
bool push_back(bool IsNULL, int value);
|
||||
bool push_back(bool IsNULL, double value);
|
||||
|
||||
#if not __x86_64__
|
||||
bool push_back(bool IsNULL, long int value);
|
||||
bool push_back(bool IsNULL, int64 value);
|
||||
#endif
|
||||
bool push_back(bool IsNULL, int64_t value);
|
||||
bool push_back(int value);
|
||||
bool push_back(double value);
|
||||
|
||||
#if not __x86_64__
|
||||
bool push_back(long int value);
|
||||
bool push_back(int64 value);
|
||||
#endif
|
||||
bool push_back(int64_t value);
|
||||
|
||||
virtual std::string outputValue() const;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user