Fixes tests 173

This commit is contained in:
Guido Fioravantti 2015-10-22 17:08:23 +02:00
parent 8479c3375b
commit 974f7f9899

View File

@ -291,7 +291,7 @@ INSERT INTO test VALUES
(NULL), (NULL),
(3); (3);
SELECT CDB_CartodbfyTableCheck('test', 'Table with null cartodb_id #148'); SELECT CDB_CartodbfyTableCheck('test', 'Table with null cartodb_id #148');
SELECT cartodb_id, cartodb_id_1 from test; SELECT cartodb_id, cartodb_id_0 from test;
DROP TABLE test; DROP TABLE test;
-- Table with non unique cartodb_id -- Table with non unique cartodb_id
@ -303,7 +303,7 @@ INSERT INTO test VALUES
(2), (2),
(2); (2);
SELECT CDB_CartodbfyTableCheck('test', 'Table with non unique cartodb_id #148'); SELECT CDB_CartodbfyTableCheck('test', 'Table with non unique cartodb_id #148');
SELECT cartodb_id, cartodb_id_1 from test; SELECT cartodb_id, cartodb_id_0 from test;
DROP TABLE test; DROP TABLE test;
-- Table with non unique and null cartodb_id -- Table with non unique and null cartodb_id
@ -316,7 +316,7 @@ INSERT INTO test VALUES
(NULL), (NULL),
(2); (2);
SELECT CDB_CartodbfyTableCheck('test', 'Table with non unique and null cartodb_id #148'); SELECT CDB_CartodbfyTableCheck('test', 'Table with non unique and null cartodb_id #148');
SELECT cartodb_id, cartodb_id_1 from test; SELECT cartodb_id, cartodb_id_0 from test;
DROP TABLE test; DROP TABLE test;