File tree Expand file tree Collapse file tree 3 files changed +0
-13
lines changed
Expand file tree Collapse file tree 3 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,6 @@ struct HttpServerState {
3838
3939static HttpServerState global_state;
4040
41- std::string GetColumnTypeName (MaterializedQueryResult &result, idx_t column) {
42- if (result.RowCount () == 0 ) {
43- return " String" ;
44- }
45- return result.types [column].ToString ();
46- }
47-
4841// New: Base64 decoding function
4942std::string base64_decode (const std::string &in) {
5043 std::string out;
Original file line number Diff line number Diff line change 99
1010class ResponseFormat (Enum ):
1111 ND_JSON = "JSONEachRow"
12- JSON = "JSON"
1312 COMPACT_JSON = "JSONCompact"
1413
1514
Original file line number Diff line number Diff line change @@ -30,8 +30,3 @@ def http_duck_with_token() -> Iterator[Client]:
3030 yield client
3131
3232 process .kill ()
33-
34-
35- @pytest .fixture
36- def token_client ():
37- return Client (f"http://{ HOST } :{ PORT } " , token_auth = API_KEY )
You can’t perform that action at this time.
0 commit comments