Tejaskriya commented on code in PR #7289:
URL: https://github.com/apache/ozone/pull/7289#discussion_r1795263253
##########
hadoop-ozone/integration-test/src/test/java/org/apache/hadoop/ozone/debug/TestLDBCli.java:
##########
@@ -206,6 +207,18 @@ private static Stream<Arguments> scanTestCases() {
Named.of("Filter dataSize>2000", Arrays.asList("--filter",
"dataSize:greater:2000")),
Named.of("Expect empty result", null)
),
+ Arguments.of(
+ Named.of(KEY_TABLE, Pair.of(KEY_TABLE, false)),
+ Named.of("Default", Pair.of(0, "")),
+ Named.of("Filter key3 regex", Arrays.asList("--filter",
"keyName:regex:^.*3$")),
+ Named.of("Expect key3", Pair.of("key3", "key4"))
+ ),
+ Arguments.of(
+ Named.of(KEY_TABLE, Pair.of(KEY_TABLE, false)),
+ Named.of("Default", Pair.of(0, "")),
+ Named.of("Filter dataSize>500 using regex",
Arrays.asList("--filter", "dataSize:regex:^5.*$")),
Review Comment:
Thanks for the review, I have updated the test now
--
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]