mirror of
https://github.com/Hopiu/django.git
synced 2026-03-31 05:10:24 +00:00
Fixed string format specifier for fillfactor in GistIndex.
This commit is contained in:
parent
a8e492bc81
commit
1f0813ca7e
1 changed files with 1 additions and 1 deletions
|
|
@ -96,5 +96,5 @@ class GistIndex(PostgresIndex):
|
|||
if self.buffering is not None:
|
||||
with_params.append('buffering = %s' % ('on' if self.buffering else 'off'))
|
||||
if self.fillfactor is not None:
|
||||
with_params.append('fillfactor = %s' % self.fillfactor)
|
||||
with_params.append('fillfactor = %d' % self.fillfactor)
|
||||
return with_params
|
||||
|
|
|
|||
Loading…
Reference in a new issue