aboutsummaryrefslogtreecommitdiff
path: root/dump/table.scm
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-08-21 15:03:20 +0300
committerMunyoki Kilyungi2023-08-21 15:06:06 +0300
commit8e1e4cceab516afab46ccced63ca9edab663ca11 (patch)
treecad625c3ecf0a555d7b56b777cdade535cb30d07 /dump/table.scm
parent51b3c0548c98e0bc05e11a89cbf6b75d31b9f8d5 (diff)
downloadgn-transform-databases-8e1e4cceab516afab46ccced63ca9edab663ca11.tar.gz
Rename dump -> transform
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
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?))