Improve test about existing cartodb_id values #138

pull/146/head
Rafa de la Torre 9 years ago
parent 75b37d5a88
commit 85b206fdba

@ -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;

@ -65,9 +65,9 @@ DROP TABLE
CREATE TABLE
INSERT 0 3
Existing cartodb_id values are respected #138 cartodbfied fine
1|||a|
2|||b|
3|||c|
10|||a|
20|||b|
30|||c|
DROP TABLE
DROP FUNCTION
DROP FUNCTION

Loading…
Cancel
Save