feat: add remaining Statement Types (#3381) · googleapis/java-bigquery@5f39b19 (original) (raw)
`@@ -452,6 +452,44 @@ public StatementType apply(String constant) {
`
452
452
`public static final StatementType DROP_FUNCTION = type.createAndRegister("DROP_FUNCTION");
`
453
453
`public static final StatementType DROP_PROCEDURE = type.createAndRegister("DROP_PROCEDURE");
`
454
454
`public static final StatementType MERGE = type.createAndRegister("MERGE");
`
``
455
`+
public static final StatementType CREATE_MATERIALIZED_VIEW =
`
``
456
`+
type.createAndRegister("CREATE_MATERIALIZED_VIEW");
`
``
457
`+
public static final StatementType CREATE_TABLE_FUNCTION =
`
``
458
`+
type.createAndRegister("CREATE_TABLE_FUNCTION");
`
``
459
`+
public static final StatementType CREATE_ROW_ACCESS_POLICY =
`
``
460
`+
type.createAndRegister("CREATE_ROW_ACCESS_POLICY");
`
``
461
`+
public static final StatementType CREATE_SCHEMA = type.createAndRegister("CREATE_SCHEMA");
`
``
462
`+
public static final StatementType CREATE_SNAPSHOT_TABLE =
`
``
463
`+
type.createAndRegister("CREATE_SNAPSHOT_TABLE");
`
``
464
`+
public static final StatementType CREATE_SEARCH_INDEX =
`
``
465
`+
type.createAndRegister("CREATE_SEARCH_INDEX");
`
``
466
`+
public static final StatementType DROP_EXTERNAL_TABLE =
`
``
467
`+
type.createAndRegister("DROP_EXTERNAL_TABLE");
`
``
468
+
``
469
`+
public static final StatementType DROP_MODEL = type.createAndRegister("DROP_MODEL");
`
``
470
`+
public static final StatementType DROP_MATERIALIZED_VIEW =
`
``
471
`+
type.createAndRegister("DROP_MATERIALIZED_VIEW");
`
``
472
+
``
473
`+
public static final StatementType DROP_TABLE_FUNCTION =
`
``
474
`+
type.createAndRegister("DROP_TABLE_FUNCTION");
`
``
475
`+
public static final StatementType DROP_SEARCH_INDEX =
`
``
476
`+
type.createAndRegister("DROP_SEARCH_INDEX");
`
``
477
`+
public static final StatementType DROP_SCHEMA = type.createAndRegister("DROP_SCHEMA");
`
``
478
`+
public static final StatementType DROP_SNAPSHOT_TABLE =
`
``
479
`+
type.createAndRegister("DROP_SNAPSHOT_TABLE");
`
``
480
`+
public static final StatementType DROP_ROW_ACCESS_POLICY =
`
``
481
`+
type.createAndRegister("DROP_ROW_ACCESS_POLICY");
`
``
482
`+
public static final StatementType ALTER_MATERIALIZED_VIEW =
`
``
483
`+
type.createAndRegister("ALTER_MATERIALIZED_VIEW");
`
``
484
`+
public static final StatementType ALTER_SCHEMA = type.createAndRegister("ALTER_SCHEMA");
`
``
485
`+
public static final StatementType SCRIPT = type.createAndRegister("SCRIPT");
`
``
486
`+
public static final StatementType TRUNCATE_TABLE = type.createAndRegister("TRUNCATE_TABLE");
`
``
487
`+
public static final StatementType CREATE_EXTERNAL_TABLE =
`
``
488
`+
type.createAndRegister("CREATE_EXTERNAL_TABLE");
`
``
489
`+
public static final StatementType EXPORT_DATA = type.createAndRegister("EXPORT_DATA");
`
``
490
`+
public static final StatementType EXPORT_MODEL = type.createAndRegister("EXPORT_MODEL");
`
``
491
`+
public static final StatementType LOAD_DATA = type.createAndRegister("LOAD_DATA");
`
``
492
`+
public static final StatementType CALL = type.createAndRegister("CALL");
`
455
493
``
456
494
`private StatementType(String constant) {
`
457
495
`super(constant);
`