Skip to content

Commit 7549f7c

Browse files
Fixed review comments
1 parent 7199967 commit 7549f7c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/tests/default/create_hash_index.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
CREATE INDEX IF NOT EXISTS "Idx_$%{}[]()&*^!@""'`\/#"
66
ON public.test_table_for_indexes USING hash
77
(id)
8-
WITH (fillfactor=90)
8+
WITH (fillfactor=75)
99
TABLESPACE pg_default;

web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/11_plus/properties.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ SELECT DISTINCT ON (cls.relname)
4444
CASE am.amname
4545
WHEN 'btree' THEN 90
4646
WHEN 'gist' THEN 90
47-
WHEN 'hash' THEN 90
47+
WHEN 'hash' THEN 75
4848
WHEN 'spgist' THEN 90
4949
ELSE NULL
5050
END

web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/13_plus/properties.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ SELECT DISTINCT ON (cls.relname)
5050
CASE am.amname
5151
WHEN 'btree' THEN 90
5252
WHEN 'gist' THEN 90
53-
WHEN 'hash' THEN 90
53+
WHEN 'hash' THEN 75
5454
WHEN 'spgist' THEN 90
5555
ELSE NULL
5656
END

web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/15_plus/properties.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ SELECT DISTINCT ON (cls.relname)
5151
CASE am.amname
5252
WHEN 'btree' THEN 90
5353
WHEN 'gist' THEN 90
54-
WHEN 'hash' THEN 90
54+
WHEN 'hash' THEN 75
5555
WHEN 'spgist' THEN 90
5656
ELSE NULL
5757
END

0 commit comments

Comments
 (0)