This commit is contained in:
Igor Ignatyev 2014-12-01 22:22:02 +03:00
commit 81cc6a5760
6 changed files with 54 additions and 10 deletions

View File

@ -325,7 +325,7 @@ public interface Path
*
* @return the resulting path or this path if it does not contain
* redundant name elements; an empty path is returned if this path
* does have a root component and all name elements are redundant
* does not have a root component and all name elements are redundant
*
* @see #getParent
* @see #toRealPath

View File

@ -462,7 +462,7 @@ public abstract class BaseRowSet implements Serializable, Cloneable {
* <code>false</code> that it is not. The default is <code>true</code>.
* @serial
*/
private boolean escapeProcessing;
private boolean escapeProcessing = true;
/**
* A constant indicating the isolation level of the connection

View File

@ -1116,7 +1116,7 @@ public interface Connection extends Wrapper, AutoCloseable {
*
* @return true if the connection is valid, false otherwise
* @exception SQLException if the value supplied for <code>timeout</code>
* is less then 0
* is less than 0
* @since 1.6
*
* @see java.sql.DatabaseMetaData#getClientInfoProperties

View File

@ -206,11 +206,13 @@ class ServerImpl implements TimeSource {
if (timer1Enabled) {
timer1.cancel();
}
try {
dispatcherThread.join();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
logger.log(Level.FINER, "ServerImpl.stop: ", e);
if (dispatcherThread != null) {
try {
dispatcherThread.join();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
logger.log(Level.FINER, "ServerImpl.stop: ", e);
}
}
}

View File

@ -0,0 +1,42 @@
/*
* Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 8066130
* @summary Test HttpServer stop method invocation before a start has been called
*/
import java.net.InetSocketAddress;
import com.sun.net.httpserver.HttpServer;
public class StopNoStartTest {
public static void main(String[] args) throws Exception {
InetSocketAddress serverAddr = new InetSocketAddress(0);
HttpServer server = HttpServer.create(serverAddr, 0);
server.stop(0);
}
}

View File

@ -186,11 +186,11 @@ public class BaseRowSetTests extends BaseTest {
}
/*
* Validate that getEscapeProcessing() returns false by default
* Validate that getEscapeProcessing() returns true by default
*/
@Test
public void test08() throws Exception {
assertFalse(brs.getEscapeProcessing());
assertTrue(brs.getEscapeProcessing());
}
/*