Improve test about existing cartodb_id values #138

This commit is contained in:
Rafa de la Torre
2015-09-10 18:18:13 +02:00
parent 75b37d5a88
commit 85b206fdba
2 changed files with 6 additions and 6 deletions

View File

@@ -246,9 +246,9 @@ CREATE table existing_cartodb_id (
description text
);
INSERT INTO existing_cartodb_id (cartodb_id, description) VALUES
(1, 'a'),
(2, 'b'),
(3, 'c');
(10, 'a'),
(20, 'b'),
(30, 'c');
SELECT CDB_CartodbfyTableCheck('existing_cartodb_id', 'Existing cartodb_id values are respected #138');
SELECT * from existing_cartodb_id;
DROP TABLE existing_cartodb_id;