Uses of Class
org.voltdb.VoltTable
Packages that use VoltTable
-
Uses of VoltTable in org.voltdb
Methods in org.voltdb that return VoltTableModifier and TypeMethodDescriptionfinal VoltTableVoltTable.clone(int extraBytes) Generates a duplicate of a table including the column schema.static VoltTableVoltTable.fromJSONObject(org.json_voltpatches.JSONObject json) Construct a table from a JSON object.static VoltTableVoltTable.fromJSONString(String json) Construct a table from a JSON string.static VoltTableVoltTable.getInstanceForTest(ByteBuffer buf) get a not fully constructed and validated VoltTable.Methods in org.voltdb with parameters of type VoltTableModifier and TypeMethodDescriptionvoidAdd all rows fromotherinto this VoltTable.voidVoltTable.addTableWithExtraColumns(VoltTable other) Adds a table with extra columns, based on another provided table.voidVoltTable.addTableWithLessColumns(VoltTable other) Adds a table with fewer columns, based on another provided table.final voidVoltCompoundProcedure.completeProcedure(VoltTable result) All processing of this compound procedure is now complete.final voidVoltCompoundProcedure.completeProcedure(VoltTable[] result) All processing of this compound procedure is now complete.booleanVoltTable.hasSameContents(VoltTable other) Check to see if this table has the same contents as the provided table.booleanVoltTable.hasSameContents(VoltTable other, boolean ignoreOrder) Check to see if this table has the same contents as the provided table, optionally ignoring the order of rows.Method parameters in org.voltdb with type arguments of type VoltTableModifier and TypeMethodDescriptionvoidVoltTable.addTables(Collection<VoltTable> tables) Add all rows fromtablesinto this VoltTable.