From 20ab921a5ab44bed0850857a962192d354caadcc Mon Sep 17 00:00:00 2001 From: Sylvain Joubert Date: Thu, 8 Feb 2018 10:38:30 +0100 Subject: [PATCH] Add mapping of the 'clob' type to the existing 'text' type --- scripts/ddl2cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ddl2cpp b/scripts/ddl2cpp index 8291b84d..106619e4 100755 --- a/scripts/ddl2cpp +++ b/scripts/ddl2cpp @@ -211,6 +211,7 @@ types = { 'char': 'char_', 'varchar': 'varchar', 'text': 'text', + 'clob': 'text', 'tinyblob': 'blob', 'blob': 'blob', 'mediumblob': 'blob',