mirror of https://github.com/citusdata/citus.git
13 lines
408 B
SQL
13 lines
408 B
SQL
/* citus--6.1-3--6.1-4.sql */
|
|
|
|
SET search_path = 'pg_catalog';
|
|
|
|
CREATE FUNCTION column_to_column_name(table_name regclass, column_var_text text)
|
|
RETURNS text
|
|
LANGUAGE C STRICT
|
|
AS 'MODULE_PATHNAME', $$column_to_column_name$$;
|
|
COMMENT ON FUNCTION column_to_column_name(table_name regclass, column_var_text text)
|
|
IS 'convert the textual Var representation to a column name';
|
|
|
|
RESET search_path;
|