Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
# Autogenerated by Thrift Compiler (0.15.0)
# Autogenerated by Thrift Compiler (0.17.0)
#
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
#
Expand DownExpand Up@@ -45,6 +45,7 @@ if len(sys.argv) <= 1 or sys.argv[1] == '--help':
print(' TGetDelegationTokenResp GetDelegationToken(TGetDelegationTokenReq req)')
print(' TCancelDelegationTokenResp CancelDelegationToken(TCancelDelegationTokenReq req)')
print(' TRenewDelegationTokenResp RenewDelegationToken(TRenewDelegationTokenReq req)')
print(' TDBSqlGetLoadInformationResp GetLoadInformation(TDBSqlGetLoadInformationReq req)')
print('')
sys.exit(0)

Expand DownExpand Up@@ -250,6 +251,12 @@ elif cmd == 'RenewDelegationToken':
sys.exit(1)
pp.pprint(client.RenewDelegationToken(eval(args[0]),))

elif cmd == 'GetLoadInformation':
if len(args) != 1:
print('GetLoadInformation requires 1 args')
sys.exit(1)
pp.pprint(client.GetLoadInformation(eval(args[0]),))

else:
print('Unrecognized method %s' % cmd)
sys.exit(1)
Expand Down
191 changes: 190 additions & 1 deletion src/databricks/sql/thrift_api/TCLIService/TCLIService.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 46 additions & 46 deletions src/databricks/sql/thrift_api/TCLIService/constants.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading