Open tpcgold opened 4 years ago
Thanks for the bug report
In addition, there is no GEOGRAPHY(65535) type in BigQuery, only GEOGRAPHY is enough
DBeaver doesn't support BigQuery DDL syntax, as well as many other BigQuery aspects (partitioning, datasets, etc). We plan to add proper BigQuery extensions (similar to BigTable) closer to version 8.0.
System information:
Connection specification:
Describe the problem you're observing:
The created SQL statement in DBeaver Tasks to migrate Tables from MySQL and Create Table on BigQuery is wrong Target DDL shows:
CREATE TABLE 'project'.dataset.table( a timestamp NOT NULL, b INT64 NOT NULL, c INT64, d GEOGRAPHY(65535) );
but should be (note the single ` after project above and below after table)( ' is used due to markdown compatibility instead of ` ):CREATE TABLE 'project.dataset.table'( a timestamp NOT NULL, b INT64 NOT NULL, c INT64, d GEOGRAPHY(65535) );
Steps to reproduce, if exist:
Create a task that needs to create a table on BigQuery
Include any warning/errors/backtraces from the logs