-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
CALL dbgen(sf=0.1); | ||
COPY nation TO 'nation.tbl'; | ||
COPY region TO 'region.tbl'; | ||
COPY part TO 'part.tbl'; | ||
COPY supplier TO 'supplier.tbl'; | ||
COPY partsupp TO 'partsupp.tbl'; | ||
COPY customer TO 'customer.tbl'; | ||
COPY orders TO 'orders.tbl'; | ||
COPY lineitem TO 'lineitem.tbl'; | ||
COPY nation TO 'nation.tbl' (HEADER FALSE); | ||
COPY region TO 'region.tbl' (HEADER FALSE); | ||
COPY part TO 'part.tbl' (HEADER FALSE); | ||
COPY supplier TO 'supplier.tbl' (HEADER FALSE); | ||
COPY partsupp TO 'partsupp.tbl' (HEADER FALSE); | ||
COPY customer TO 'customer.tbl' (HEADER FALSE); | ||
COPY orders TO 'orders.tbl' (HEADER FALSE); | ||
COPY lineitem TO 'lineitem.tbl' (HEADER FALSE); |