Teradata / PyTd

A Python Module to make it easy to script powerful interactions with Teradata Database in a DevOps friendly way.
MIT License
108 stars 43 forks source link

adding np.nan --> NULL handling for upload #123

Closed tmeehanunum closed 4 years ago

tmeehanunum commented 4 years ago

where udaexec generates the string parameters for the values statement during upload, I added case to catch np.nan values and pass 'NULL' instead of the repr() of 'NULL' which is "'NULL'". Prior to this change, there was no way to write NULL values from pandas to teradata.

tmeehanunum commented 4 years ago

made in error