Google bigquery BigQuery:Legacy SQL Insert报告已插入1行,但表仍然为空

Google bigquery BigQuery:Legacy SQL Insert报告已插入1行,但表仍然为空,google-bigquery,Google Bigquery,我们有一个插入一行的传统SQL查询: INSERT INTO DataMother.sales_history (casino_id, currency_id, site_id, affiliate_program_id, user_id, date_report, date_submitted, clicks, signups, ftds, deposits, depositors, withdrawals, chargebacks, bonuses, earnings)

我们有一个插入一行的传统SQL查询:

INSERT INTO DataMother.sales_history (casino_id, currency_id, site_id, 
    affiliate_program_id, user_id, date_report, date_submitted, clicks, signups,
    ftds, deposits, depositors, withdrawals, chargebacks, bonuses, earnings)

VALUES (1017, 2, 2, 0, 0, '2019-04-01', '2019-04-01 00:00:00',
    8, 1, 0, 0, 0, 0, 0, 0, 0)
运行时,从BigQuery web界面收到的响应为:

此语句在products-db-290508:DataMother.sales\u history中添加了一行

但是,如果我以后运行此查询:

SELECT * FROM DataMother.sales_history
答案是:

此查询未返回任何结果

似乎插入没有任何效果为了让问题变得更奇怪,如果我在不同的数据集中(DataMother_dev)对相同的表运行完全相同的查询,那么一切都正常