We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What i expected is to create a index like this:
CREATE INDEX pgroonga_content_index ON memos USING pgroonga (content);
As described by the tuturial of that pg extension.
but, because the type of index has been limited to only several type, use create_index is impossible, i have to use execute to do this.
execute <<-'HEREDOC' CREATE INDEX pgroonga_content_index ON memos USING pgroonga (content); HEREDOC
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What i expected is to create a index like this:
As described by the tuturial of that pg extension.
but, because the type of index has been limited to only several type, use create_index is impossible, i have to use execute to do this.
The text was updated successfully, but these errors were encountered: