This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 3e1fec1ee Minor: fix flaking test (#5805)
3e1fec1ee is described below
commit 3e1fec1eeb5b9df8c0b20c8021c15f6d3d540c94
Author: Andrew Lamb <[email protected]>
AuthorDate: Thu Mar 30 23:33:46 2023 +0200
Minor: fix flaking test (#5805)
---
datafusion/core/tests/sqllogictests/test_files/interval.slt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/core/tests/sqllogictests/test_files/interval.slt
b/datafusion/core/tests/sqllogictests/test_files/interval.slt
index 0eeb87622..7142ce6e5 100644
--- a/datafusion/core/tests/sqllogictests/test_files/interval.slt
+++ b/datafusion/core/tests/sqllogictests/test_files/interval.slt
@@ -56,7 +56,7 @@ create table t (i interval) as values ('5 days 3
nanoseconds'::interval);
statement ok
insert into t values ('6 days 7 nanoseconds'::interval)
-query ?T
+query ?T rowsort
select
i,
arrow_typeof(i)