Skip to content

Commit

Permalink
Merge pull request #3916 from nell-shark/master
Browse files Browse the repository at this point in the history
Fix issue #3910
  • Loading branch information
katzyn committed Oct 22, 2023
2 parents 12b314d + 30fd12a commit 426185a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions h2/src/docsrc/html/tutorial.html
Expand Up @@ -1260,7 +1260,7 @@ <h3>Using the Native Fulltext Search</h3>
<code>KEYS</code> (an array of objects).
To join a table, use a join as in:
<code>SELECT T.* FROM FT_SEARCH_DATA('Hello', 0, 0) FT, TEST T
WHERE FT.TABLE='TEST' AND T.ID=FT.KEYS[0];</code>
WHERE FT."TABLE"='TEST' AND T.ID=FT."KEYS"[1];</code>
</p>
<p>
You can also call the index from within a Java application:
Expand Down Expand Up @@ -1320,7 +1320,7 @@ <h3>Using the Apache Lucene Fulltext Search</h3>
<code>COLUMNS</code> (an array of column names),
and <code>KEYS</code> (an array of objects). To join a table, use a join as in:
<code>SELECT T.* FROM FTL_SEARCH_DATA('Hello', 0, 0) FT, TEST T
WHERE FT.TABLE='TEST' AND T.ID=FT.KEYS[0];</code>
WHERE FT."TABLE"='TEST' AND T.ID=FT."KEYS"[1];</code>
</p>
<p>
You can also call the index from within a Java application:
Expand Down

0 comments on commit 426185a

Please sign in to comment.