diff options
| author | Baptiste Mispelon <bmispelon@gmail.com> | 2014-08-16 17:21:14 +0200 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2014-08-18 18:55:12 +0200 |
| commit | 5853c87a458f62ebd62d7809168355610de2570c (patch) | |
| tree | d9cb9cf43b1bb3da8e70667133f4da7b601a47f7 /docs/ref/contrib/gis/tutorial.txt | |
| parent | b6aa60f4252311ef8ef24b4ffd99984197be7ee6 (diff) | |
Fixed #23303 -- Added BEGIN and COMMIT statements to the output of sqlmigrate.
Diffstat (limited to 'docs/ref/contrib/gis/tutorial.txt')
| -rw-r--r-- | docs/ref/contrib/gis/tutorial.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/ref/contrib/gis/tutorial.txt b/docs/ref/contrib/gis/tutorial.txt index a53cc100d9..a8c68f3b8e 100644 --- a/docs/ref/contrib/gis/tutorial.txt +++ b/docs/ref/contrib/gis/tutorial.txt @@ -285,6 +285,7 @@ This command should produce the following output: .. code-block:: sql + BEGIN; CREATE TABLE "world_worldborder" ( "id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, @@ -302,6 +303,7 @@ This command should produce the following output: ) ; CREATE INDEX "world_worldborder_mpoly_id" ON "world_worldborder" USING GIST ( "mpoly" ); + COMMIT; .. note:: |
