|
| 1 | +package ast |
| 2 | + |
| 3 | +// AlterRouteStatement represents an ALTER ROUTE statement. |
| 4 | +type AlterRouteStatement struct { |
| 5 | + Name *Identifier `json:"Name,omitempty"` |
| 6 | +} |
| 7 | + |
| 8 | +func (s *AlterRouteStatement) node() {} |
| 9 | +func (s *AlterRouteStatement) statement() {} |
| 10 | + |
| 11 | +// AlterAssemblyStatement represents an ALTER ASSEMBLY statement. |
| 12 | +type AlterAssemblyStatement struct { |
| 13 | + Name *Identifier `json:"Name,omitempty"` |
| 14 | +} |
| 15 | + |
| 16 | +func (s *AlterAssemblyStatement) node() {} |
| 17 | +func (s *AlterAssemblyStatement) statement() {} |
| 18 | + |
| 19 | +// AlterEndpointStatement represents an ALTER ENDPOINT statement. |
| 20 | +type AlterEndpointStatement struct { |
| 21 | + Name *Identifier `json:"Name,omitempty"` |
| 22 | +} |
| 23 | + |
| 24 | +func (s *AlterEndpointStatement) node() {} |
| 25 | +func (s *AlterEndpointStatement) statement() {} |
| 26 | + |
| 27 | +// AlterServiceStatement represents an ALTER SERVICE statement. |
| 28 | +type AlterServiceStatement struct { |
| 29 | + Name *Identifier `json:"Name,omitempty"` |
| 30 | +} |
| 31 | + |
| 32 | +func (s *AlterServiceStatement) node() {} |
| 33 | +func (s *AlterServiceStatement) statement() {} |
| 34 | + |
| 35 | +// AlterCertificateStatement represents an ALTER CERTIFICATE statement. |
| 36 | +type AlterCertificateStatement struct { |
| 37 | + Name *Identifier `json:"Name,omitempty"` |
| 38 | +} |
| 39 | + |
| 40 | +func (s *AlterCertificateStatement) node() {} |
| 41 | +func (s *AlterCertificateStatement) statement() {} |
| 42 | + |
| 43 | +// AlterApplicationRoleStatement represents an ALTER APPLICATION ROLE statement. |
| 44 | +type AlterApplicationRoleStatement struct { |
| 45 | + Name *Identifier `json:"Name,omitempty"` |
| 46 | +} |
| 47 | + |
| 48 | +func (s *AlterApplicationRoleStatement) node() {} |
| 49 | +func (s *AlterApplicationRoleStatement) statement() {} |
| 50 | + |
| 51 | +// AlterAsymmetricKeyStatement represents an ALTER ASYMMETRIC KEY statement. |
| 52 | +type AlterAsymmetricKeyStatement struct { |
| 53 | + Name *Identifier `json:"Name,omitempty"` |
| 54 | +} |
| 55 | + |
| 56 | +func (s *AlterAsymmetricKeyStatement) node() {} |
| 57 | +func (s *AlterAsymmetricKeyStatement) statement() {} |
| 58 | + |
| 59 | +// AlterQueueStatement represents an ALTER QUEUE statement. |
| 60 | +type AlterQueueStatement struct { |
| 61 | + Name *SchemaObjectName `json:"Name,omitempty"` |
| 62 | +} |
| 63 | + |
| 64 | +func (s *AlterQueueStatement) node() {} |
| 65 | +func (s *AlterQueueStatement) statement() {} |
| 66 | + |
| 67 | +// AlterPartitionSchemeStatement represents an ALTER PARTITION SCHEME statement. |
| 68 | +type AlterPartitionSchemeStatement struct { |
| 69 | + Name *Identifier `json:"Name,omitempty"` |
| 70 | +} |
| 71 | + |
| 72 | +func (s *AlterPartitionSchemeStatement) node() {} |
| 73 | +func (s *AlterPartitionSchemeStatement) statement() {} |
| 74 | + |
| 75 | +// AlterPartitionFunctionStatement represents an ALTER PARTITION FUNCTION statement. |
| 76 | +type AlterPartitionFunctionStatement struct { |
| 77 | + Name *Identifier `json:"Name,omitempty"` |
| 78 | +} |
| 79 | + |
| 80 | +func (s *AlterPartitionFunctionStatement) node() {} |
| 81 | +func (s *AlterPartitionFunctionStatement) statement() {} |
| 82 | + |
| 83 | +// AlterFulltextCatalogStatement represents an ALTER FULLTEXT CATALOG statement. |
| 84 | +type AlterFulltextCatalogStatement struct { |
| 85 | + Name *Identifier `json:"Name,omitempty"` |
| 86 | +} |
| 87 | + |
| 88 | +func (s *AlterFulltextCatalogStatement) node() {} |
| 89 | +func (s *AlterFulltextCatalogStatement) statement() {} |
| 90 | + |
| 91 | +// AlterFulltextIndexStatement represents an ALTER FULLTEXT INDEX statement. |
| 92 | +type AlterFulltextIndexStatement struct { |
| 93 | + OnName *SchemaObjectName `json:"OnName,omitempty"` |
| 94 | +} |
| 95 | + |
| 96 | +func (s *AlterFulltextIndexStatement) node() {} |
| 97 | +func (s *AlterFulltextIndexStatement) statement() {} |
| 98 | + |
| 99 | +// AlterSymmetricKeyStatement represents an ALTER SYMMETRIC KEY statement. |
| 100 | +type AlterSymmetricKeyStatement struct { |
| 101 | + Name *Identifier `json:"Name,omitempty"` |
| 102 | +} |
| 103 | + |
| 104 | +func (s *AlterSymmetricKeyStatement) node() {} |
| 105 | +func (s *AlterSymmetricKeyStatement) statement() {} |
| 106 | + |
| 107 | +// AlterServiceMasterKeyStatement represents an ALTER SERVICE MASTER KEY statement. |
| 108 | +type AlterServiceMasterKeyStatement struct { |
| 109 | +} |
| 110 | + |
| 111 | +func (s *AlterServiceMasterKeyStatement) node() {} |
| 112 | +func (s *AlterServiceMasterKeyStatement) statement() {} |
0 commit comments