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

[minor](regression) fix unstable test case #19018

Merged
merged 2 commits into from
Apr 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
update
  • Loading branch information
Gabriel39 committed Apr 24, 2023
commit 867df317a1fe8d4e1360db91715170e05192b945
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ suite("test_pk_uk_case", "inverted_index") {
def part_key = rd.nextInt(1000)
def sub_key = 13
def line_num = 29
def decimal = 11.11
def decimal = rd.nextInt(1000) + 0.11
def city = RandomStringUtils.randomAlphabetic(10)
def name = UUID.randomUUID().toString()
def date = DateTimeFormatter.ofPattern("yyyy-MM-dd").format(LocalDateTime.now())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ suite("test_pk_uk_case") {
def part_key = rd.nextInt(1000)
def sub_key = 13
def line_num = 29
def decimal = 11.11
def decimal = rd.nextInt(1000) + 0.11
def city = RandomStringUtils.randomAlphabetic(10)
def name = UUID.randomUUID().toString()
def date = DateTimeFormatter.ofPattern("yyyy-MM-dd").format(LocalDateTime.now())
Expand Down