(self)
| 74 | return path, args, kwargs |
| 75 | |
| 76 | def get_with_params(self): |
| 77 | with_params = [] |
| 78 | if self.length is not None: |
| 79 | with_params.append("length = %d" % self.length) |
| 80 | if self.columns: |
| 81 | with_params.extend( |
| 82 | "col%d = %d" % (i, v) for i, v in enumerate(self.columns, start=1) |
| 83 | ) |
| 84 | return with_params |
| 85 | |
| 86 | |
| 87 | class BrinIndex(PostgresIndex): |