Skip to content

Commit

Permalink
Minor documentation fix for executeQuery
Browse files Browse the repository at this point in the history
Change-Id: I6073e41b5a5b74b91671002cb93dc42c4023f10f
  • Loading branch information
jackdingilian committed Jul 16, 2024
1 parent 0207e1d commit 10e69e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2622,7 +2622,7 @@ public void readChangeStreamAsync(
*
* <pre>{@code
* try (BigtableDataClient bigtableDataClient = BigtableDataClient.create("[PROJECT]", "[INSTANCE]")) {
* String query = "SELECT cf['stringCol'] FROM [TABLE]";
* String query = "SELECT CAST(cf['stringCol'] AS STRING) FROM [TABLE]";
*
* try (ResultSet resultSet = bigtableDataClient.executeQuery(Statement.of(query))) {
* while (resultSet.next()) {
Expand Down

0 comments on commit 10e69e0

Please sign in to comment.