Skip to content

Commit d12602b

Browse files
committed
Fix tablespace version guc error
1 parent 6ae4ce2 commit d12602b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/misc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ pg_tablespace_location(PG_FUNCTION_ARGS)
379379
Datum
380380
get_tablespace_version_directory_name(PG_FUNCTION_ARGS)
381381
{
382-
PG_RETURN_TEXT_P(GP_TABLESPACE_VERSION_DIRECTORY);
382+
PG_RETURN_TEXT_P(cstring_to_text(GP_TABLESPACE_VERSION_DIRECTORY));
383383
}
384384

385385
/*

0 commit comments

Comments
 (0)