Skip to content

Commit

Permalink
Fix the index name in the SQL example (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
abetomo authored Jul 10, 2024
1 parent 2b2e25a commit d4bab4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _po/ja/reference/commands/pgroonga-primary-maintainer.po
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ msgstr "### クエリの例"
msgid ""
"```sql\n"
"CREATE TABLE notes (content text);\n"
"CREATE INDEX ${NOTES_INDEX_NAME} ON notes USING pgroonga (content);\n"
"CREATE INDEX notes_index ON notes USING pgroonga (content);\n"
"INSERT INTO notes SELECT 'NOTES' FROM generate_series(1, 200);\n"
"DELETE FROM notes;\n"
"```"
Expand Down
2 changes: 1 addition & 1 deletion ja/reference/commands/pgroonga-primary-maintainer.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ See also: https://www.postgresql.org/docs/current/libpq-envars.html

```sql
CREATE TABLE notes (content text);
CREATE INDEX ${NOTES_INDEX_NAME} ON notes USING pgroonga (content);
CREATE INDEX notes_index ON notes USING pgroonga (content);
INSERT INTO notes SELECT 'NOTES' FROM generate_series(1, 200);
DELETE FROM notes;
```
Expand Down
2 changes: 1 addition & 1 deletion reference/commands/pgroonga-primary-maintainer.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ In this example, it was specified with `--threshold 20K`. This is the size at wh

```sql
CREATE TABLE notes (content text);
CREATE INDEX ${NOTES_INDEX_NAME} ON notes USING pgroonga (content);
CREATE INDEX notes_index ON notes USING pgroonga (content);
INSERT INTO notes SELECT 'NOTES' FROM generate_series(1, 200);
DELETE FROM notes;
```
Expand Down

0 comments on commit d4bab4a

Please sign in to comment.