Package org.yamcs.yarch.streamsql
Class SimpleStreamSqlStatement
java.lang.Object
org.yamcs.yarch.streamsql.SimpleStreamSqlStatement
- All Implemented Interfaces:
StreamSqlStatement
- Direct Known Subclasses:
AlterSequenceStatement
,AlterTableStatement
,CloseStreamStatement
,CreateInputStreamStatement
,CreateOutputStreamStatement
,CreateStreamStatement
,CreateTableStatement
,DeleteStatement
,DescribeStatement
,DropTableStatement
,InsertStatement
,MergeStatement
,ShowDatabasesStatement
,ShowEnginesStatement
,ShowSequencesStatement
,ShowStreamsStatement
,ShowStreamStatement
,ShowTablesStatement
,UpdateTableStatement
common implementation for statements which do not return a stream of results but just a limited set
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
execute
(ExecutionContext context, Consumer<Tuple> consumer) Execute query and return a result.void
execute
(YarchDatabaseInstance ydb, ResultListener resultListener, long limit) Execute query and limit the number of results returned.protected TupleDefinition
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.yamcs.yarch.streamsql.StreamSqlStatement
execute
-
Constructor Details
-
SimpleStreamSqlStatement
public SimpleStreamSqlStatement()
-
-
Method Details
-
execute
public void execute(YarchDatabaseInstance ydb, ResultListener resultListener, long limit) throws StreamSqlException Description copied from interface:StreamSqlStatement
Execute query and limit the number of results returned.Note that the update/delete/drop table queries that return one row are executed even if the limit is 0. The output however is suppressed when the limit is set to 0.
- Specified by:
execute
in interfaceStreamSqlStatement
- Throws:
StreamSqlException
-
execute
Description copied from interface:StreamSqlStatement
Execute query and return a result. The result can be closed at any time.- Specified by:
execute
in interfaceStreamSqlStatement
- Returns:
- Throws:
StreamSqlException
-
execute
protected abstract void execute(ExecutionContext context, Consumer<Tuple> consumer) throws StreamSqlException - Throws:
StreamSqlException
-
getResultDefinition
-