From eca61f8771d798fdd067074715df165d3be30d5f Mon Sep 17 00:00:00 2001 From: Willy Morin Date: Thu, 12 Mar 2015 11:42:21 +0100 Subject: [PATCH] Fix explanation typo. Drop table if it exists --- web/src/mysql.md | 2 +- web/src/sqlite.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/mysql.md b/web/src/mysql.md index eb38974..ec97113 100644 --- a/web/src/mysql.md +++ b/web/src/mysql.md @@ -103,7 +103,7 @@ Let's start the `pgloader` command with our `sakila.load` command file: The *WARNING* messages we see here are expected as the PostgreSQL database is empty when running the command, and pgloader is using the SQL commands -`DROP TABLE IF NOT EXISTS` when the given command uses the `include drop` +`DROP TABLE IF EXISTS` when the given command uses the `include drop` option. Note that the output of the command has been edited to facilitate its diff --git a/web/src/sqlite.md b/web/src/sqlite.md index bfa3fc2..3747002 100644 --- a/web/src/sqlite.md +++ b/web/src/sqlite.md @@ -70,7 +70,7 @@ its HTTP URL location then *unziped* it before loading it. Also, the *WARNING* messages we see here are expected as the PostgreSQL database is empty when running the command, and pgloader is using the SQL -commands `DROP TABLE IF NOT EXISTS` when the given command uses the `include +commands `DROP TABLE IF EXISTS` when the given command uses the `include drop` option. Note that the output of the command has been edited to facilitate its