UpdateDatabaseDdlRequest class

Enqueues the given DDL statements to be applied, in order but not necessarily all at once, to the database schema at some point (or points) in the future.

The server checks that the statements are executable (syntactically valid, name tables that exist, etc.) before enqueueing them, but they may still fail upon later execution (e.g., if a statement from another batch of statements is applied first and it conflicts in some way, or if there is some data-related problem like a NULL value in a column to which NOT NULL would be added). If a statement fails, all subsequent statements in the batch are automatically cancelled. Each batch of statements is assigned a name which can be used with the Operations API to monitor progress. See the operation_id field for more details.

Constructors

UpdateDatabaseDdlRequest({String? operationId, String? protoDescriptors, List<String>? statements})
UpdateDatabaseDdlRequest.fromJson(Map json_)

Properties

hashCode int
The hash code for this object.
no setterinherited
operationId String?
If empty, the new update request is assigned an automatically-generated operation ID.
getter/setter pair
protoDescriptors String?
Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements.
getter/setter pair
protoDescriptorsAsBytes List<int>
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
statements List<String>?
DDL statements to be applied to the database.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited