You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
Make date handling more in-line with MySQL
Date limit of year 1400 was used due to Boost's limits. This patch strips out the use of Boost for date handling and sets the lower limit to year 1000.
This commit is contained in:
@ -25,8 +25,6 @@ using namespace messageqcpp;
|
||||
#include "resourcemanager.h"
|
||||
#include "ddlpkg.h"
|
||||
#include "ddlpackageprocessor.h"
|
||||
#include <boost/date_time/gregorian/gregorian.hpp>
|
||||
using namespace boost::gregorian;
|
||||
#include "dataconvert.h"
|
||||
using namespace dataconvert;
|
||||
using namespace ddlpackage;
|
||||
|
@ -34,7 +34,6 @@
|
||||
#define EXPORT
|
||||
#endif
|
||||
|
||||
#include <boost/date_time/gregorian/gregorian.hpp>
|
||||
#include "dataconvert.h"
|
||||
|
||||
namespace WriteEngine
|
||||
|
@ -25,8 +25,6 @@ using namespace messageqcpp;
|
||||
#include "resourcemanager.h"
|
||||
#include "../../dbcon/dmlpackage/dmlpkg.h"
|
||||
#include "ddlpackageprocessor.h"
|
||||
#include <boost/date_time/gregorian/gregorian.hpp>
|
||||
using namespace boost::gregorian;
|
||||
#include "dataconvert.h"
|
||||
using namespace dataconvert;
|
||||
using namespace dmlpackage;
|
||||
|
@ -34,7 +34,6 @@
|
||||
#define EXPORT
|
||||
#endif
|
||||
|
||||
#include <boost/date_time/gregorian/gregorian.hpp>
|
||||
#include "dataconvert.h"
|
||||
|
||||
namespace WriteEngine
|
||||
|
Reference in New Issue
Block a user