-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ca82d6
commit 1bdc22c
Showing
11 changed files
with
355 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
-- Create customized polar stat env func | ||
CREATE FUNCTION polar_stat_env( | ||
IN format text DEFAULT 'json' | ||
) RETURNS TEXT | ||
) | ||
RETURNS SETOF TEXT | ||
AS 'MODULE_PATHNAME', 'polar_stat_env' | ||
LANGUAGE C PARALLEL SAFE; | ||
|
||
CREATE FUNCTION polar_stat_env_no_format( | ||
IN format text DEFAULT 'json' | ||
) | ||
RETURNS TEXT | ||
RETURNS SETOF TEXT | ||
AS 'MODULE_PATHNAME', 'polar_stat_env_no_format' | ||
LANGUAGE C PARALLEL SAFE; |
Oops, something went wrong.