Skip to content
New issue

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

fix: named statements were used when fetchSize was non-zero and prepareThreshold=0 #870

Merged
merged 1 commit into from
Jul 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1747,16 +1747,17 @@ private void sendOneQuery(SimpleQuery query, SimpleParameterList params, int max
: "Queries that might contain ; must be executed with QueryExecutor.QUERY_EXECUTE_AS_SIMPLE mode. "
+ "Given query is " + query.getNativeSql();

// nb: if we decide to use a portal (usePortal == true) we must also use a named statement
// (oneShot == false) as otherwise the portal will be closed under us unexpectedly when
// the unnamed statement is next reused.
// As per "46.2. Message Flow" documentation (quote from 9.1):
// If successfully created, a named portal object lasts till the end of the current transaction, unless explicitly destroyed
//
// That is named portals do not require to use named statements.

boolean noResults = (flags & QueryExecutor.QUERY_NO_RESULTS) != 0;
boolean noMeta = (flags & QueryExecutor.QUERY_NO_METADATA) != 0;
boolean describeOnly = (flags & QueryExecutor.QUERY_DESCRIBE_ONLY) != 0;
boolean usePortal = (flags & QueryExecutor.QUERY_FORWARD_CURSOR) != 0 && !noResults && !noMeta
&& fetchSize > 0 && !describeOnly;
boolean oneShot = (flags & QueryExecutor.QUERY_ONESHOT) != 0 && !usePortal;
boolean oneShot = (flags & QueryExecutor.QUERY_ONESHOT) != 0;
boolean noBinaryTransfer = (flags & QUERY_NO_BINARY_TRANSFER) != 0;
boolean forceDescribePortal = (flags & QUERY_FORCE_DESCRIBE_PORTAL) != 0;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/*
* Copyright (c) 2017, PostgreSQL Global Development Group
* See the LICENSE file in the project root for more information.
*/

package org.postgresql.test.jdbc2;

import org.postgresql.test.TestUtil;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.Collection;

@RunWith(Parameterized.class)
public class ConcurrentStatementFetch extends BaseTest4 {

private final AutoCommit autoCommit;
private final int fetchSize;

public ConcurrentStatementFetch(AutoCommit autoCommit, int fetchSize, BinaryMode binaryMode) {
this.autoCommit = autoCommit;
this.fetchSize = fetchSize;
setBinaryMode(binaryMode);
}

@Parameterized.Parameters(name = "{index}: fetch(autoCommit={0}, fetchSize={1}, binaryMode={2})")
public static Iterable<Object[]> data() {
Collection<Object[]> ids = new ArrayList<Object[]>();
for (AutoCommit autoCommit : AutoCommit.values()) {
for (int fetchSize : new int[]{1, 2, 20}) {
for (BinaryMode binaryMode : BinaryMode.values()) {
ids.add(new Object[]{autoCommit, fetchSize, binaryMode});
}
}
}
return ids;
}

@Override
public void setUp() throws Exception {
super.setUp();
con.setAutoCommit(autoCommit == AutoCommit.YES);
}

@Test
public void testFetchTwoStatements() throws Exception {
PreparedStatement ps1 = null;
PreparedStatement ps2 = null;
try {
ps1 = con.prepareStatement("select * from generate_series(0, 9)");
ps1.setFetchSize(fetchSize);
ResultSet rs1 = ps1.executeQuery();
ps2 = con.prepareStatement("select * from generate_series(10, 19)");
ps2.setFetchSize(fetchSize);
ResultSet rs2 = ps2.executeQuery();

for (int i = 0; i < 10; i++) {
Assert.assertTrue(rs1.next());
Assert.assertTrue(rs2.next());
Assert.assertEquals("Row#" + i + ", resultset 1", i, rs1.getInt(1));
Assert.assertEquals("Row#" + i + ", resultset 2", i + 10, rs2.getInt(1));
}
Assert.assertFalse(rs1.next());
Assert.assertFalse(rs2.next());
} finally {
TestUtil.closeQuietly(ps1);
TestUtil.closeQuietly(ps2);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public static TestSuite suite() throws Exception {

suite.addTest(new JUnit4TestAdapter(CallableStmtTest.class));
suite.addTest(new JUnit4TestAdapter(CursorFetchTest.class));
suite.addTest(new JUnit4TestAdapter(ConcurrentStatementFetch.class));
suite.addTest(new JUnit4TestAdapter(ServerCursorTest.class));

suite.addTest(new JUnit4TestAdapter(IntervalTest.class));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import org.postgresql.PGStatement;
import org.postgresql.jdbc.PgStatement;
import org.postgresql.jdbc.PreferQueryMode;
import org.postgresql.test.TestUtil;
Expand Down Expand Up @@ -77,6 +78,23 @@ public void tearDown() throws SQLException {
super.tearDown();
}

private int getNumberOfServerPreparedStatements(String sql)
throws SQLException {
PreparedStatement pstmt = null;
ResultSet rs = null;
try {
pstmt = con.prepareStatement(
"select count(*) from pg_prepared_statements where statement = ?");
pstmt.setString(1, sql);
rs = pstmt.executeQuery();
rs.next();
return rs.getInt(1);
} finally {
TestUtil.closeQuietly(rs);
TestUtil.closeQuietly(pstmt);
}
}

@Test
public void testSetBinaryStream() throws SQLException {
assumeByteaSupported();
Expand Down Expand Up @@ -1225,12 +1243,10 @@ public void testBatchWithPrepareThreshold5() throws SQLException {
pstmt.executeBatch();
}
pstmt.close();
pstmt = con.prepareStatement("select count(*) from pg_prepared_statements where statement = 'INSERT INTO batch_tab_threshold5 (id, val) VALUES ($1,$2)'");
ResultSet rs = pstmt.executeQuery();
assertTrue(rs.next());
assertEquals(1, rs.getInt(1));
rs.close();
pstmt.close();
assertTrue("prepareThreshold=5, so the statement should be server-prepared",
((PGStatement) pstmt).isUseServerPrepare());
assertEquals("prepareThreshold=5, so the statement should be server-prepared", 1,
getNumberOfServerPreparedStatements("INSERT INTO batch_tab_threshold5 (id, val) VALUES ($1,$2)"));
}

@Test
Expand All @@ -1255,12 +1271,39 @@ public void testBatchWithPrepareThreshold0() throws SQLException {
pstmt.executeBatch();
}
pstmt.close();
pstmt = con.prepareStatement("select count(*) from pg_prepared_statements where statement = 'INSERT INTO batch_tab_threshold0 (id, val) VALUES ($1,$2)'");
ResultSet rs = pstmt.executeQuery();
assertTrue(rs.next());
assertEquals(0, rs.getInt(1));
rs.close();
pstmt.close();

assertFalse("prepareThreshold=0, so the statement should not be server-prepared",
((PGStatement) pstmt).isUseServerPrepare());
assertEquals("prepareThreshold=0, so the statement should not be server-prepared", 0,
getNumberOfServerPreparedStatements("INSERT INTO batch_tab_threshold0 (id, val) VALUES ($1,$2)"));
}

@Test
public void testSelectPrepareThreshold0AutoCommitFalseFetchSizeNonZero() throws SQLException {
assumeBinaryModeRegular();
Assume.assumeTrue("simple protocol only does not support prepared statement requests",
preferQueryMode != PreferQueryMode.SIMPLE);

con.setAutoCommit(false);
PreparedStatement pstmt = null;
ResultSet rs = null;
try {
pstmt = con.prepareStatement("SELECT 42");
((PgStatement) pstmt).setPrepareThreshold(0);
pstmt.setFetchSize(1);
rs = pstmt.executeQuery();
rs.next();
assertEquals(42, rs.getInt(1));
} finally {
TestUtil.closeQuietly(rs);
TestUtil.closeQuietly(pstmt);
}

assertFalse("prepareThreshold=0, so the statement should not be server-prepared",
((PGStatement) pstmt).isUseServerPrepare());

assertEquals("prepareThreshold=0, so the statement should not be server-prepared", 0,
getNumberOfServerPreparedStatements("SELECT 42"));
}

}