Shapedsundew9 / pypgtable

Simple postgres table creation and operation
MIT License
0 stars 0 forks source link

Remove data validation #1

Closed Shapedsundew9 closed 3 years ago

Shapedsundew9 commented 3 years ago

table.validate() & raw_table.validate() make little sense. They are isolation functions that do not have any interaction with the table. There is no validation on initial population because it is reasonable to assume the application has already vetted the data file (or produced it at some point).

Validation of the data beyond what psycopg2 & postgresql do is the applications responsibility. Remove it.

Shapedsundew9 commented 3 years ago

Fixed on devel