summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rwxr-xr-xsupport/schema/gendummydata.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/support/schema/gendummydata.py b/support/schema/gendummydata.py
index 090aabb5..d51b16c8 100755
--- a/support/schema/gendummydata.py
+++ b/support/schema/gendummydata.py
@@ -54,6 +54,7 @@ if len(sys.argv) != 2:
# Just let python throw the errors if any happen
#
out = open(sys.argv[1], "w")
+out.write("BEGIN;\n")
# make sure the seed file exists
#
@@ -313,6 +314,7 @@ for p in seen_pkgs.keys():
# close output file
#
+out.write("COMMIT;\n")
out.write("\n")
out.close()