54555657585960
@GuardedBy("this") private boolean closed = false; public PhoenixTestDriver() { this.overrideProps = ReadOnlyProps.EMPTY_PROPS; queryServices = new QueryServicesTestImpl(getDefaultProps()); }
60616263646566
} // For tests to override the default configuration public PhoenixTestDriver(ReadOnlyProps props) { overrideProps = props; queryServices = new QueryServicesTestImpl(getDefaultProps(),overrideProps); }
38394041424344
*/ public class PhoenixTestDriver extends PhoenixEmbeddedDriver { private ConnectionQueryServices queryServices; public PhoenixTestDriver() { this(new QueryServicesTestImpl()); }
525354555657585960
} @Override public synchronized QueryServices getQueryServices() { if (services == null) { services = new QueryServicesTestImpl(overrideProps); } return services; }