Skip to content

Fix order of NOT NULL and DEFAULT clauses in BigQuery CREATE TABLE statements #16616

@lukaseder

Description

@lukaseder

We're currently generating this:

create table t (c int64 not null default 1);

When we should be generating this, instead:

create table t (c int64 default 1 not null);

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions