Example #1
0
    def __init__(self,argv):
	self.kcols1 = []
	self.kcols2 = []
	self.rows = []
	self.graph = None
	self.bucketFiles = {}
	TableTool.__init__(self,1,argv)
Example #2
0
    def __init__(self, argv):
        self.maxColIndex = 0
        self.currentLine = None
        self.currentLineNum = 0

        self.gbColumns = []  # list of integer col indexes
        self.accumulatorClasses = []  # list of Accumulator classes
        self.accumulatorColumns = []  # corresp. list of columns to accum
        self.accumulatorXtraArg = []  # corresp extra arg to accum constructor
        self.col2stats = {}  # maps col# to Statistics accum
        self.outSpecifiers = []  #

        self.partitions = {}

        TableTool.__init__(self, 1, argv)
Example #3
0
    def __init__(self,argv):

	self.jcols1 = []
	self.jcols2 = []

        self.ncols1 = 0
        self.ncols2 = 0

	self.doLeftOuter = False
	self.doRightOuter = False

	self.swappedInputs = False
	self.selfJoin = False
	self.inner = None

	TableTool.__init__(self,2,argv)
Example #4
0
    def __init__(self, argv):
        #
        #
        self.ncols = 0

        #
        self.separatorChar = TAB
        self.commentChar = HASH

        #
        self.fileName = None
        self.fileDesc = None
        #
        self.currentLine = None
        self.currentLineNum = 0
        #
        self.currentRow = None
        self.currentRowNum = 0
        #
        TableTool.__init__(self, 0, argv)
Example #5
0
 def __init__(self, argv):
     TableTool.__init__(self, 1, argv)
Example #6
0
 def __init__(self, argv):
     self.xpColumns = []  # list (col,pref,sep,suff)
     TableTool.__init__(self, 1, argv)
Example #7
0
    def __init__(self,argv):
	self.rows = []
	TableTool.__init__(self,1,argv)
Example #8
0
 def __init__(self, argv):
     self.functionContext = {}
     self.functions = []
     self.isFilter = []
     TableTool.__init__(self, 1, argv)
Example #9
0
 def __init__(self, argv):
     self.kcols1 = []
     self.kcols2 = []
     self.t2Keys = {}
     TableTool.__init__(self, 2, argv)
Example #10
0
 def __init__(self, argv):
     self.pcols = []
     self.fname2ofd = {}
     self.pval2fname = {}
     TableTool.__init__(self, 1, argv)