aboutsummaryrefslogtreecommitdiff
path: root/dump/table.scm
diff options
context:
space:
mode:
Diffstat (limited to 'dump/table.scm')
-rw-r--r--dump/table.scm28
1 files changed, 0 insertions, 28 deletions
diff --git a/dump/table.scm b/dump/table.scm
deleted file mode 100644
index 834c4fd..0000000
--- a/dump/table.scm
+++ /dev/null
@@ -1,28 +0,0 @@
-(define-module (dump table)
- #:use-module (srfi srfi-9 gnu)
- #:export (make-table
- table-name
- table-size
- table-columns
- set-table-columns
- make-column
- column-name
- column-type
- column-dumped?))
-
-(define-immutable-record-type <table>
- (make-table name size columns)
- table?
- (name table-name)
- (size table-size)
- (columns table-columns set-table-columns))
-
-(define-immutable-record-type <column>
- (column-constructor name type dumped?)
- column?
- (name column-name)
- (type column-type)
- (dumped? column-dumped?))
-
-(define* (make-column name type #:optional dumped?)
- (column-constructor name type dumped?))