delta_trace_db.query.transaction_query

Classes

TransactionQuery(queries)

(en) This is a query class that supports transaction processing.

class delta_trace_db.query.transaction_query.TransactionQuery(queries: List[Query])

Bases: CloneableFile

(en) This is a query class that supports transaction processing. It internally stores normal query classes as an array, and the targets are processed as transactions.

(ja) トランザクション処理に対応したクエリクラスです。 内部に通常のクエリクラスを配列で保持しており、対象はトランザクション処理されます。

Parameters:

queries (List[Query]) – The transaction targets.

className: str = 'TransactionQuery'
clone() TransactionQuery

(en) Returns a deep copy of this object.

(ja) このオブジェクトのディープコピーを返します。

classmethod from_dict(src: Dict[str, Any]) TransactionQuery

(en) Restore this object from the dictionary.

(ja) このオブジェクトを辞書から復元します。

Parameters:

src (Dict[str, Any]) – A dictionary made with to_dict of this class.

Returns:

復元されたオブジェクト

Return type:

CloneableFile

to_dict() Dict[str, Any]

(en) Convert the object to a dictionary. The returned dictionary can only contain primitive types, null, lists or maps with only primitive elements. If you want to include other classes, the target class should inherit from this class and chain calls to_dict.

(ja) このオブジェクトを辞書に変換します。 戻り値の辞書にはプリミティブ型かプリミティブ型要素のみのリスト またはマップ等、そしてNoneのみを含められます。 それ以外のクラスを含めたい場合、対象のクラスもこのクラスを継承し、 to_dictを連鎖的に呼び出すようにしてください。

version: str = '1'