You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE INDEX exciting_index ON boundaries USING gist (epoch, name)
but I am trying to build an index like the following:
CREATE INDEX exciting_index ON boundaries USING gist (epoch, name gist_trgm_ops(siglen=256))
Is this something you would be open to supporting? Or does reshape already support this? I definitely understand if it's too niche. And syntactically I am not sure how it would fit without being gross, this idea makes me feel bad:
[[actions]]
type = "add_index"
table = "boundaries"
[actions.index]
name = "exciting_index"
columns = ["epoch", "name"]
type = "gist"
operators = {
"name" = "gist_trgm_ops(siglen=256)"
}
The text was updated successfully, but these errors were encountered:
These things should absolutely be supported by Reshape, only reason they aren't is that there are so many settings that I didn't have time to add them all.
A bit short on time at the moment but I'll definitely get back and add support for this as soon as possible. If you want to create a PR for it, I'd be happy to review as well. Thanks!
As far as I can tell reshape can generate
but I am trying to build an index like the following:
Is this something you would be open to supporting? Or does reshape already support this? I definitely understand if it's too niche. And syntactically I am not sure how it would fit without being gross, this idea makes me feel bad:
The text was updated successfully, but these errors were encountered: