Skip to content
Closed
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 @@ -62,7 +62,7 @@ public int getOriginColumnOrdinal() {
/**
* Consider the query <code>select a+b as c, d as e from t</code>. The
* output column c has two origins (a and b), both of them derived. The
* output column d as one origin (c), which is not derived.
* output column e has one origin (d), which is not derived.
*
* @return false if value taken directly from column in origin table; true
* otherwise
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jcommander.version=1.72
jedis.version=3.3.0
jetty.version=9.4.46.v20220331
jmh.version=1.12
jna.version=5.5.0
jna.version=5.7.0
joda-time.version=2.8.1
json-path.version=2.7.0
jsr305.version=3.0.2
Expand Down Expand Up @@ -155,7 +155,7 @@ slf4j.version=1.7.25
spark.version=2.2.2
sqlline.version=1.12.0
teradata.tpcds.version=1.2
testcontainers.version=1.15.1
testcontainers.version=1.17.3
tpch.version=1.0
uzaygezen.version=0.2
xalan.version=2.7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static int getRedisServerPort() {
}

static String getRedisServerHost() {
return REDIS_CONTAINER.isRunning() ? REDIS_CONTAINER.getContainerIpAddress() : HOST;
return REDIS_CONTAINER.isRunning() ? REDIS_CONTAINER.getHost() : HOST;
}

}