mirror of https://github.com/citusdata/citus.git
Adds dbsize function
parent
5edc04d956
commit
ae97ac591a
|
@ -4084,8 +4084,9 @@ Datum citus_internal_database_size(PG_FUNCTION_ARGS){
|
||||||
|
|
||||||
Name dbName = PG_GETARG_NAME(0);
|
Name dbName = PG_GETARG_NAME(0);
|
||||||
|
|
||||||
|
int64 size = 0;
|
||||||
|
|
||||||
PG_RETURN_DATUM(size);
|
PG_RETURN_INT64(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue