OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
heavydb.thrift.Heavy.connect_args Class Reference
+ Inheritance diagram for heavydb.thrift.Heavy.connect_args:
+ Collaboration diagram for heavydb.thrift.Heavy.connect_args:

Public Member Functions

def __init__
 
def read
 
def write
 
def validate
 
def __repr__
 
def __eq__
 
def __ne__
 

Public Attributes

 user
 
 passwd
 
 dbname
 

Private Attributes

 __dict__
 

Detailed Description

Attributes:
 - user
 - passwd
 - dbname

Definition at line 7583 of file Heavy.py.

Constructor & Destructor Documentation

def heavydb.thrift.Heavy.connect_args.__init__ (   self,
  user = None,
  passwd = None,
  dbname = None 
)

Definition at line 7593 of file Heavy.py.

7594  def __init__(self, user=None, passwd=None, dbname=None,):
7595  self.user = user
7596  self.passwd = passwd
7597  self.dbname = dbname

Member Function Documentation

def heavydb.thrift.Heavy.connect_args.__eq__ (   self,
  other 
)

Definition at line 7655 of file Heavy.py.

7656  def __eq__(self, other):
7657  return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
def heavydb.thrift.Heavy.connect_args.__ne__ (   self,
  other 
)

Definition at line 7658 of file Heavy.py.

7659  def __ne__(self, other):
7660  return not (self == other)
7661 all_structs.append(connect_args)
connect_args.thrift_spec = (
def heavydb.thrift.Heavy.connect_args.__repr__ (   self)

Definition at line 7650 of file Heavy.py.

7651  def __repr__(self):
7652  L = ['%s=%r' % (key, value)
7653  for key, value in self.__dict__.items()]
7654  return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
std::string join(T const &container, std::string const &delim)

+ Here is the call graph for this function:

def heavydb.thrift.Heavy.connect_args.read (   self,
  iprot 
)

Definition at line 7598 of file Heavy.py.

References heavydb.thrift.Heavy.connect_args.dbname, Catalog_Namespace::UserAlterations.passwd, heavydb.thrift.Heavy.connect_args.passwd, ai.heavy.jdbc.HeavyAIGeomTest.user, ai.heavy.jdbc.HeavyAIColumnTypeTest.user, ai.heavy.jdbc.HeavyAIPrepareTest.user, ai.heavy.jdbc.HeavyAIConnectionTest.user, ai.heavy.jdbc.HeavyAIArrayTest.user, ai.heavy.jdbc.HeavyAIStatementTest.user, com.mapd.calcite.parser.HeavyDBUser.user, com.mapd.parser.extension.ddl.SqlCreateUserMapping.Builder.user, com.mapd.parser.extension.ddl.SqlDropUserMapping.user, DashboardDescriptor.user, com.mapd.parser.extension.ddl.SqlCreateUserMapping.user, ai.heavy.jdbc.Options.user, and heavydb.thrift.Heavy.connect_args.user.

7599  def read(self, iprot):
7600  if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
7601  iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec])
7602  return
7603  iprot.readStructBegin()
7604  while True:
7605  (fname, ftype, fid) = iprot.readFieldBegin()
7606  if ftype == TType.STOP:
7607  break
7608  if fid == 1:
7609  if ftype == TType.STRING:
7610  self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString()
7611  else:
7612  iprot.skip(ftype)
7613  elif fid == 2:
7614  if ftype == TType.STRING:
7615  self.passwd = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString()
7616  else:
7617  iprot.skip(ftype)
7618  elif fid == 3:
7619  if ftype == TType.STRING:
7620  self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString()
7621  else:
7622  iprot.skip(ftype)
7623  else:
7624  iprot.skip(ftype)
7625  iprot.readFieldEnd()
7626  iprot.readStructEnd()
def heavydb.thrift.Heavy.connect_args.validate (   self)

Definition at line 7647 of file Heavy.py.

7648  def validate(self):
7649  return
def heavydb.thrift.Heavy.connect_args.write (   self,
  oprot 
)

Definition at line 7627 of file Heavy.py.

References heavydb.thrift.Heavy.connect_args.dbname, Catalog_Namespace::UserAlterations.passwd, heavydb.thrift.Heavy.connect_args.passwd, ai.heavy.jdbc.HeavyAIGeomTest.user, ai.heavy.jdbc.HeavyAIColumnTypeTest.user, ai.heavy.jdbc.HeavyAIPrepareTest.user, ai.heavy.jdbc.HeavyAIConnectionTest.user, ai.heavy.jdbc.HeavyAIArrayTest.user, ai.heavy.jdbc.HeavyAIStatementTest.user, com.mapd.calcite.parser.HeavyDBUser.user, com.mapd.parser.extension.ddl.SqlCreateUserMapping.Builder.user, com.mapd.parser.extension.ddl.SqlDropUserMapping.user, DashboardDescriptor.user, com.mapd.parser.extension.ddl.SqlCreateUserMapping.user, ai.heavy.jdbc.Options.user, and heavydb.thrift.Heavy.connect_args.user.

7628  def write(self, oprot):
7629  if oprot._fast_encode is not None and self.thrift_spec is not None:
7630  oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec]))
7631  return
7632  oprot.writeStructBegin('connect_args')
7633  if self.user is not None:
7634  oprot.writeFieldBegin('user', TType.STRING, 1)
7635  oprot.writeString(self.user.encode('utf-8') if sys.version_info[0] == 2 else self.user)
7636  oprot.writeFieldEnd()
7637  if self.passwd is not None:
7638  oprot.writeFieldBegin('passwd', TType.STRING, 2)
7639  oprot.writeString(self.passwd.encode('utf-8') if sys.version_info[0] == 2 else self.passwd)
7640  oprot.writeFieldEnd()
7641  if self.dbname is not None:
7642  oprot.writeFieldBegin('dbname', TType.STRING, 3)
7643  oprot.writeString(self.dbname.encode('utf-8') if sys.version_info[0] == 2 else self.dbname)
7644  oprot.writeFieldEnd()
7645  oprot.writeFieldStop()
7646  oprot.writeStructEnd()

Member Data Documentation

heavydb.thrift.Heavy.connect_args.__dict__
private

Definition at line 7656 of file Heavy.py.

Referenced by TableFunctionsFactory_node.Node.copy().

heavydb.thrift.Heavy.connect_args.dbname

Definition at line 7596 of file Heavy.py.

Referenced by heavydb.thrift.Heavy.connect_args.read(), heavydb.thrift.Heavy.krb5_connect_args.read(), heavydb.thrift.Heavy.switch_database_args.read(), heavydb.thrift.Heavy.connect_args.write(), heavydb.thrift.Heavy.krb5_connect_args.write(), and heavydb.thrift.Heavy.switch_database_args.write().

heavydb.thrift.Heavy.connect_args.passwd

Definition at line 7595 of file Heavy.py.

Referenced by heavydb.thrift.Heavy.connect_args.read(), and heavydb.thrift.Heavy.connect_args.write().

heavydb.thrift.Heavy.connect_args.user

Definition at line 7594 of file Heavy.py.

Referenced by heavydb.thrift.ttypes.TSessionInfo.read(), heavydb.thrift.Heavy.connect_args.read(), heavydb.thrift.ttypes.TSessionInfo.write(), and heavydb.thrift.Heavy.connect_args.write().


The documentation for this class was generated from the following file: