1
0
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:
Andrew Hutchings
2016-08-30 11:25:16 +01:00
parent 9a76bfc0f3
commit 0bea3e4ab1
16 changed files with 129 additions and 168 deletions

View File

@ -30,8 +30,6 @@ using namespace messageqcpp;
using namespace dmlpackage;
#include "dmlpackageprocessor.h"
using namespace dmlpackageprocessor;
#include <boost/date_time/gregorian/gregorian.hpp>
using namespace boost::gregorian;
#include "dataconvert.h"
using namespace dataconvert;
#include "calpontsystemcatalog.h"