Fix typo in exception

Sorry, the shell testing framework doesn't make it easy to test it,
@Algunenano
pg-federated-tables-fix-no-geom
Rafa de la Torre 5 years ago
parent 10997d5e29
commit ebeea3605e

@ -171,7 +171,7 @@ BEGIN
-- Check id_column is numeric
IF NOT @extschema@.__ft_is_numeric(src_table, id_column) THEN
RAISE EXCEPTION 'non integer id_column "%"', id_colun;
RAISE EXCEPTION 'non integer id_column "%"', id_column;
END IF;
-- Check if the geom and mercator columns have a geometry type
@ -268,7 +268,7 @@ BEGIN
-- Check id_column is numeric
IF NOT @extschema@.__ft_is_numeric(src_table, id_column) THEN
RAISE EXCEPTION 'non integer id_column "%"', id_colun;
RAISE EXCEPTION 'non integer id_column "%"', id_column;
END IF;
-- Get a list of columns excluding the id

Loading…
Cancel
Save