You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"SELECT customer.c_custkey, (SELECT customer.c_name FROM (SELECT customer.c_custkey, customer.c_name \
1391
+
FROM (SELECT __source.c_custkey AS c_custkey, __source.c_name AS c_name FROM customer AS __source) AS customer) AS customer \
1392
+
WHERE customer.c_custkey = 1) FROM (SELECT customer.c_custkey FROM (SELECT __source.c_custkey AS c_custkey FROM customer AS __source) AS customer) AS customer"
1393
+
);
1394
+
Ok(())
1395
+
}
1396
+
1370
1397
/// Return a RecordBatch with made up data about customer
1371
1398
fncustomer() -> RecordBatch{
1372
1399
let custkey:ArrayRef = Arc::new(Int64Array::from(vec![1,2,3]));
0 commit comments