From f6109d54a74de1094f5334c63d44f7c90ff501b4 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 20 Dec 2021 16:24:54 +0530 Subject: Capture full column type. Capture full column type instead of just whether it is an integer. * dump.scm (dump-data-table): Capture full column type in object. * dump/table.scm ()[int?]: Delete member. [type]: New member. Export column-type instead of column-int?. --- dump/table.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dump') diff --git a/dump/table.scm b/dump/table.scm index 1a9abc6..8f6a128 100644 --- a/dump/table.scm +++ b/dump/table.scm @@ -7,7 +7,7 @@ set-table-columns make-column column-name - column-int?)) + column-type)) (define-immutable-record-type (make-table name size columns) @@ -17,7 +17,7 @@ (columns table-columns set-table-columns)) (define-immutable-record-type - (make-column name int?) + (make-column name type) column? (name column-name) - (int? column-int?)) + (type column-type)) -- cgit v1.2.3