Skip to content

Commit 23e5dc3

Browse files
committed
this version includes TIMESTAMPLOCALTZ_TYPE
1 parent 6925cd7 commit 23e5dc3

File tree

4 files changed

+1903
-1149
lines changed

4 files changed

+1903
-1149
lines changed

TCLIService/TCLIService-remote

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Autogenerated by Thrift Compiler (0.10.0)
3+
# Autogenerated by Thrift Compiler (0.12.0)
44
#
55
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
66
#
@@ -45,7 +45,8 @@ if len(sys.argv) <= 1 or sys.argv[1] == '--help':
4545
print(' TGetDelegationTokenResp GetDelegationToken(TGetDelegationTokenReq req)')
4646
print(' TCancelDelegationTokenResp CancelDelegationToken(TCancelDelegationTokenReq req)')
4747
print(' TRenewDelegationTokenResp RenewDelegationToken(TRenewDelegationTokenReq req)')
48-
print(' TGetLogResp GetLog(TGetLogReq req)')
48+
print(' TGetQueryIdResp GetQueryId(TGetQueryIdReq req)')
49+
print(' TSetClientInfoResp SetClientInfo(TSetClientInfoReq req)')
4950
print('')
5051
sys.exit(0)
5152

@@ -251,11 +252,17 @@ elif cmd == 'RenewDelegationToken':
251252
sys.exit(1)
252253
pp.pprint(client.RenewDelegationToken(eval(args[0]),))
253254

254-
elif cmd == 'GetLog':
255+
elif cmd == 'GetQueryId':
255256
if len(args) != 1:
256-
print('GetLog requires 1 args')
257+
print('GetQueryId requires 1 args')
257258
sys.exit(1)
258-
pp.pprint(client.GetLog(eval(args[0]),))
259+
pp.pprint(client.GetQueryId(eval(args[0]),))
260+
261+
elif cmd == 'SetClientInfo':
262+
if len(args) != 1:
263+
print('SetClientInfo requires 1 args')
264+
sys.exit(1)
265+
pp.pprint(client.SetClientInfo(eval(args[0]),))
259266

260267
else:
261268
print('Unrecognized method %s' % cmd)

0 commit comments

Comments
 (0)