Skip to content
This repository was archived by the owner on Apr 15, 2022. It is now read-only.

Patch Release for Feature Sture

Compare
Choose a tag to compare
@Ben-Epstein Ben-Epstein released this 15 Jan 14:42
· 287 commits to master since this release
55dda8d

This is a patch release for 2.4.0-k8

The following features were added:

The following was fixed

  • Case sensitivity: The database's case sensitive column and table names were causing searchability issues. To remedy this, all column names, schema names, and table names are stored as UPPERCASE in the metadata, to match the default state of the database storage. (@sergioferragut )
  • datetime.min (0001-01-01 00:00:00) was causing problems when Spark tried to parse and process it. Because so much of the system runs on Spark, this was causing problems down the stack. To remedy this, we've replaced datetime.min with datetime.datetime('1900-01-01 00:00:00') for unspecified start times on Training Sets. (@sergioferragut , @Ben-Epstein )