Skip to content

Commit 96c3a1b

Browse files
committed
Updated fortunes query.
Signed-off-by: Santiago Pericas-Geertsen <[email protected]>
1 parent 6521f36 commit 96c3a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frameworks/Java/helidon/nima/src/main/java/io/helidon/benchmark/nima/models/PgClientConnectionPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static String carrierThread() {
7373
public static class PgClientConnection implements AutoCloseable {
7474
static final int UPDATE_QUERIES = 500;
7575
private static String SELECT_WORLD = "SELECT id, randomnumber from WORLD where id=$1";
76-
private static String SELECT_FORTUNE = "SELECT id, message from FORTUNE";
76+
private static String SELECT_FORTUNE = "SELECT * from FORTUNE";
7777

7878
private PreparedQuery<RowSet<Row>> worldQuery;
7979
private PreparedQuery<RowSet<Row>> fortuneQuery;

0 commit comments

Comments
 (0)