Skip to content

Commit

Permalink
BIG-238 Rest unsupported types
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfejfar committed Feb 28, 2024
1 parent 2b998cf commit e680713
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/php-datatypes/src/Definition/Bigquery.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@ class Bigquery extends Common
self::TYPE_BIGDECIMAL,
];

/* @see https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#TableFieldSchema */
public const TYPES_UNSUPPORTED_IN_REST = [
self::TYPE_ARRAY,
self::TYPE_INTERVAL,
];

public const MAX_LENGTH = 9223372036854775807;

public const METADATA_BACKEND = 'bigquery';
Expand Down

0 comments on commit e680713

Please sign in to comment.