GabrielCWT commented on code in PR #18542:
URL: https://github.com/apache/druid/pull/18542#discussion_r2361934961
##########
sql/src/test/java/org/apache/druid/sql/calcite/schema/SystemSchemaTest.java:
##########
@@ -381,6 +381,8 @@ public void setUp(@TempDir File tmpDir) throws Exception
private final DateTime startTime = DateTimes.nowUtc();
+ private final String version = new DruidNode("s1", "localhost", false, 8081,
null, true, false).getVersion();
Review Comment:
Updated to the code below. Just for your info, I have exposed `getVersion`
for `DruidNode` in a previous PR https://github.com/apache/druid/pull/18505
```
private final String version = GuavaUtils.firstNonNull(
SystemSchemaTest.class.getPackage().getImplementationVersion(),
"unknown"
);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]