Kaydet (Commit) 1f0813ca authored tarafından Nick Pope's avatar Nick Pope Kaydeden (comit) Tim Graham

Fixed string format specifier for fillfactor in GistIndex.

üst a8e492bc
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment