Package org.apache.wayang.apps.tpch.data
Class LineItemTuple
java.lang.Object
org.apache.wayang.apps.tpch.data.LineItemTuple
- All Implemented Interfaces:
Serializable
A tuple of the lineitem table.
Example line:
"3249925";"37271";"9775";"1";"9.00";"10874.43";"0.10";"0.04";"N";"O";"1998-04-19";"1998-06-17";"1998-04-21";"TAKE BACK RETURN ";"AIR ";"express instructions among the excuses nag"
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Parses aLineItemTuple
from a given CSV line (double quoted, comma-separated). -
Field Summary
FieldsModifier and TypeFieldDescriptionvariable text, size 44
int
fixed text, size 1
double
decimal
double
decimal
int
integer
,PK
char
fixed text, size 1
long
identifier
,PK
long
identifier
double
decimal
int
fixed text, size 1
char
fixed text, size 1
int
fixed text, size 1
fixed text, size 25
fixed text, size 10
long
identifier
double
decimal
-
Constructor Summary
ConstructorsConstructorDescriptionLineItemTuple
(long l_ORDERKEY, long l_PARTKEY, long l_SUPPKEY, int l_LINENUMBER, double l_QUANTITY, double l_EXTENDEDPRICE, double l_DISCOUNT, double l_TAX, char l_RETURNFLAG, int l_SHIPDATE, int l_COMMITDATE, int l_RECEIPTDATE, String l_SHIPINSTRUCT, String l_SHIPMODE, String l_COMMENT) -
Method Summary
-
Field Details
-
L_ORDERKEY
public long L_ORDERKEYidentifier
,PK
-
L_PARTKEY
public long L_PARTKEYidentifier
-
L_SUPPKEY
public long L_SUPPKEYidentifier
-
L_LINENUMBER
public int L_LINENUMBERinteger
,PK
-
L_QUANTITY
public double L_QUANTITYdecimal
-
L_EXTENDEDPRICE
public double L_EXTENDEDPRICEdecimal
-
L_DISCOUNT
public double L_DISCOUNTdecimal
-
L_TAX
public double L_TAXdecimal
-
L_RETURNFLAG
public char L_RETURNFLAGfixed text, size 1
-
L_LINESTATUS
public char L_LINESTATUSfixed text, size 1
-
L_SHIPDATE
public int L_SHIPDATEfixed text, size 1
-
L_COMMITDATE
public int L_COMMITDATEfixed text, size 1
-
L_RECEIPTDATE
public int L_RECEIPTDATEfixed text, size 1
-
L_SHIPINSTRUCT
fixed text, size 25
-
L_SHIPMODE
fixed text, size 10
-
L_COMMENT
variable text, size 44
-
-
Constructor Details
-
LineItemTuple
-
LineItemTuple
public LineItemTuple()
-