Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/datatype.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ pg_tle_create_base_type_internal(Oid typeNamespace,
Oid typeOid;
Oid array_oid;
char *array_type;
ObjectAddress address;
ObjectAddress address PG_USED_FOR_ASSERTS_ONLY;
Oid inputFuncParamType;
Oid outputFuncParamType;
char *namespaceName;
Expand Down
1 change: 1 addition & 0 deletions test/expected/pg_tle_api.out
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ SELECT pg_reload_conf();
t
(1 row)

\c -
DROP FUNCTION test_validuntil;
DROP FUNCTION password_check_length_greater_than_8;
DROP FUNCTION password_check_only_nums;
Expand Down
1 change: 1 addition & 0 deletions test/expected/pg_tle_api_clusterwide.out
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ SELECT pg_reload_conf();
t
(1 row)

\c -
DROP FUNCTION test_validuntil;
DROP FUNCTION password_check_length_greater_than_8;
DROP FUNCTION password_check_only_nums;
Expand Down
1 change: 1 addition & 0 deletions test/sql/pg_tle_api.sql
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ DROP SCHEMA testuser_2;
DROP ROLE testuser_2;
ALTER SYSTEM RESET pgtle.enable_password_check;
SELECT pg_reload_conf();
\c -
DROP FUNCTION test_validuntil;
DROP FUNCTION password_check_length_greater_than_8;
DROP FUNCTION password_check_only_nums;
Expand Down
1 change: 1 addition & 0 deletions test/sql/pg_tle_api_clusterwide.sql
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ DROP SCHEMA testuser_2;
DROP ROLE testuser_2;
ALTER SYSTEM RESET pgtle.enable_password_check;
SELECT pg_reload_conf();
\c -
DROP FUNCTION test_validuntil;
DROP FUNCTION password_check_length_greater_than_8;
DROP FUNCTION password_check_only_nums;
Expand Down
Loading