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 test comment typo #22034

Merged
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 @@ -85,7 +85,7 @@ protected boolean areWriteRetriesSupported()
@Override
protected void testDelete()
{
// Test method is overriden because method from superclass assumes more complex plan for `DELETE` query.
// Test method is overridden because method from superclass assumes more complex plan for `DELETE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down Expand Up @@ -170,7 +170,7 @@ protected void testDelete()
@Override
protected void testUpdate()
{
// Test method is overriden because method from superclass assumes more complex plan for `UPDATE` query.
// Test method is overridden because method from superclass assumes more complex plan for `UPDATE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected void testCreatePartitionedTable()
@Override
protected void testDelete()
{
// Test method is overriden because method from superclass assumes more complex plan for `DELETE` query.
// Test method is overridden because method from superclass assumes more complex plan for `DELETE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down Expand Up @@ -133,7 +133,7 @@ protected void testDelete()
@Override
protected void testUpdate()
{
// Test method is overriden because method from superclass assumes more complex plan for `UPDATE` query.
// Test method is overridden because method from superclass assumes more complex plan for `UPDATE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private TestingPhoenixServer()
securityLogger = java.util.logging.Logger.getLogger("SecurityLogger.org.apache");
securityLogger.setLevel(Level.SEVERE);
// to squelch the SecurityLogger,
// instantiate logger with config above before config is overriden again in HBase test franework
// instantiate logger with config above before config is overridden again in HBase test franework
org.apache.commons.logging.LogFactory.getLog("SecurityLogger.org.apache.hadoop.hbase.server");
this.conf.set("hbase.security.logger", "ERROR");
this.conf.setInt(MASTER_INFO_PORT, -1);
Expand Down
Loading