Plsm icon indicating copy to clipboard operation
Plsm copied to clipboard

MySQL mediumtext

Open msp opened this issue 2 years ago • 2 comments

I got a runtime error that I tracked down to a table with MySQL mediumtext columns. I got past it by deleting the table as I didn't need in for my new PG DB.

The type was coming through into here as :none

https://github.com/jhartwell/Plsm/blob/master/lib/io/export.ex#L6

Which then failed to match any of the map_type signatures:

https://github.com/jhartwell/Plsm/blob/master/lib/io/export.ex#L12

I didn't dig deeper but suppose mediumtext is uknown in the type mappings and coming through as :none.

msp avatar Aug 21 '21 10:08 msp

  • plsm 2.4.0 (https://github.com/jhartwell/Plsm.git) (mix) locked at f1ee062 ok

msp avatar Aug 21 '21 10:08 msp

Ah... this is probably the problem I'm having too in #121

Guessing an entry just needs to be made here.

trans avatar Oct 27 '21 20:10 trans