Uses of Interface
org.postgresql.pljava.model.TupleTableSlot
Packages that use TupleTableSlot
Package
Description
The PL/Java API for use in writing database procedures, functions, and types
using PL/Java.
Interfaces that model a useful subset of the PostgreSQL system catalogs
and related PostgreSQL abstractions for convenient Java access.
-
Uses of TupleTableSlot in org.postgresql.pljava
Methods in org.postgresql.pljava that return TupleTableSlotModifier and TypeMethodDescriptionPLJavaBasedLanguage.TriggerFunction.apply
(RegProcedure.Call.Context.TriggerData triggerData) Actually executes the prepared and specializedTriggerFunction
, with the triggering data available in triggerData.Methods in org.postgresql.pljava with parameters of type TupleTableSlotModifier and TypeMethodDescription<R,
X extends Throwable>
RTargetList.applyOver
(TupleTableSlot tuple, TargetList.Cursor.Function<R, X> f) Executes the function f, once, supplying aCursor
that can be used to process the tuple.Method parameters in org.postgresql.pljava with type arguments of type TupleTableSlotModifier and TypeMethodDescription<R,
X extends Throwable>
RTargetList.applyOver
(Iterable<TupleTableSlot> tuples, TargetList.Cursor.Function<R, X> f) Executes the function f, once, supplying aCursor
that can be iterated over the supplied tuples and used to process each tuple. -
Uses of TupleTableSlot in org.postgresql.pljava.model
Subinterfaces of TupleTableSlot in org.postgresql.pljava.modelModifier and TypeInterfaceDescriptionstatic interface
A form ofTupleTableSlot
consisting of a number of indexable elements all of the same type, described by the singleAttribute
of a one-elementTupleDescriptor
.Methods in org.postgresql.pljava.model that return TupleTableSlotModifier and TypeMethodDescriptionRegProcedure.Call.arguments()
RegProcedure.Call.Context.TriggerData.newTuple()
The proposed new version of the row, only in a trigger fired forUPDATE
.RegProcedure.Call.result()
RegProcedure.Call.Context.TriggerData.triggerTuple()
The row for which the trigger was fired.Methods in org.postgresql.pljava.model that return types with arguments of type TupleTableSlotModifier and TypeMethodDescriptionPortal.fetch
(Portal.Direction dir, long count) Fetches count more tuples (orALL
of them) in the specified direction.Execute query, returning its complete result as aList
ofTupleTableSlot
.