Adds dbsize function

pull/7375/head
gindibay 2023-12-07 18:15:20 +03:00 committed by gurkanindibay
parent 5edc04d956
commit ae97ac591a
1 changed files with 3 additions and 2 deletions

View File

@ -4083,9 +4083,10 @@ Datum citus_internal_database_size(PG_FUNCTION_ARGS){
PG_ENSURE_ARGNOTNULL(0, "dbName");
Name dbName = PG_GETARG_NAME(0);
PG_RETURN_DATUM(size);
int64 size = 0;
PG_RETURN_INT64(size);
}