From 0e1aeb0a76eca616b49428b33b390063eaaa3802 Mon Sep 17 00:00:00 2001 From: Javier Goizueta Date: Mon, 1 Jul 2019 17:00:22 +0200 Subject: [PATCH] Minor copy edit --- doc/CDB_SyncTable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CDB_SyncTable.md b/doc/CDB_SyncTable.md index 08d7bbe..f1b5696 100644 --- a/doc/CDB_SyncTable.md +++ b/doc/CDB_SyncTable.md @@ -35,7 +35,7 @@ Now we could perform some changes to the `pois` to maintain our own ranking: UPDATE pois SET rank = random()*4 + 1; ``` -Then, if the source were updated at `/tmp/pois.csv` we could synchronize with it while maintaining our `rank` values with: +Then, if the source were updated at `/tmp/pois.csv` we could synchronize with it while preserving our `rank` values with: ```sql CREATE tmp_pois(cartodb_id int, name text, type text, longitude double precision, latitude double precision, rank int);