Closed streino closed 1 month ago
Cf
Re les dates, on n'a pas fait de traitement particulier, mais ça ne devrait rien changer par rapport aux valeurs imbriquées du JSON qui étaient des strings ? Ou alors il y avait une détection de type automatique dans superset à ce moment là ? On peut s'arranger pour caster quelques colonnes en string dans la moulinette en datetime en tout cas.
Workaround :
Mais ça serait mieux d'avoir un type propre en base.
Temporairement corrigé avec un champ calculé, en attendant le fix en base.
J'ai oublié la partie migration dans la PR... Fait à la main à l'instant :
ALTER TABLE catalog ALTER COLUMN harvest__created_at TYPE TIMESTAMP USING harvest__created_at::timestamp;
ALTER TABLE catalog ALTER COLUMN harvest__modified_at TYPE TIMESTAMP USING harvest__modified_at::timestamp;
ALTER TABLE catalog ALTER COLUMN harvest__last_update TYPE TIMESTAMP USING harvest__last_update::timestamp;
ALTER TABLE catalog DROP COLUMN harvest;