pub fn expr_to_create(
expr: &CreateTableExpr,
quote_style: Option<char>,
) -> Result<CreateTable>
Expand description
Convert gRPC’s [CreateTableExpr
] back to CreateTable
statement.
You can use create_table_expr_by_column_schemas
to create a CreateTableExpr
from column schemas.
§Parameters
expr
- TheCreateTableExpr
to convertquote_style
- Optional quote style for identifiers (defaults to MySQL style ` backtick)