As returns true if this table represents a CREATE TABLE ... AS statement, false otherwise.
()
| 1025 | // As returns true if this table represents a CREATE TABLE ... AS statement, |
| 1026 | // false otherwise. |
| 1027 | func (node *CreateTable) As() bool { |
| 1028 | return node.AsSource != nil |
| 1029 | } |
| 1030 | |
| 1031 | // AsHasUserSpecifiedPrimaryKey returns true if a CREATE TABLE ... AS statement |
| 1032 | // has a PRIMARY KEY constraint specified. |
no outgoing calls
no test coverage detected