File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ connector_server:
44 port : 2130
55
66logger :
7- log_level : DEBUG
7+ log_level : INFO
88 enable_sql_query_logging : true
99
1010metrics_server :
@@ -78,7 +78,8 @@ datasources:
7878 ydb :
7979 << : *data_source_default_var
8080 use_underlay_network_for_dedicated_databases : false
81- mode : MODE_QUERY_SERVICE_NATIVE_ARROW
81+ # mode: MODE_QUERY_SERVICE_NATIVE_ARROW
82+ mode : MODE_QUERY_SERVICE_NATIVE
8283 pushdown :
8384 enable_timestamp_pushdown : true
8485
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ func (s *ReadSplitsStreamer[T]) sendResultToStream(result *paging.ReadResult[T])
6565 var err error
6666
6767 if result .Data != nil {
68- fmt .Println (" >>> HERE <<<" )
6968 // Handle the case where we have serialized Arrow data
7069 resp = & api_service_protos.TReadSplitsResponse {
7170 Payload : & api_service_protos.TReadSplitsResponse_ArrowIpcStreaming {
Original file line number Diff line number Diff line change 11PRAGMA generic.UsePredicatePushdown="true";
22
3- SELECT * FROM external_datasource.olap_lineitem_s10 LIMIT 10;
3+ SELECT
4+ MIN(l_comment),
5+ MIN(l_commitdate),
6+ MIN(l_discount),
7+ MIN(l_extendedprice),
8+ MIN(l_linenumber),
9+ MIN(l_linestatus),
10+ MIN(l_orderkey),
11+ MIN(l_partkey),
12+ MIN(l_quantity),
13+ MIN(l_receiptdate),
14+ MIN(l_returnflag),
15+ MIN(l_shipdate),
16+ MIN(l_shipinstruct),
17+ MIN(l_shipmode),
18+ MIN(l_suppkey),
19+ MIN(l_tax)
20+ FROM (SELECT * FROM external_datasource.olap_lineitem_s10 LIMIT 10000000);
421
You can’t perform that action at this time.
0 commit comments