1.主键字段为空问题
错误信息
org.apache.flink.table.api.TableException: Column bus_no is NOT NULL, however, a null value is being written into it. You can set job configuration table.exec.sink.not-null-enforcerDROP to suppress this exception and drop …
1、大 O 复杂度表示法
算法的执行效率,粗略地讲,就是算法代码执行的时间 这里有段非常简单的代码,求 1,2,3…n 的累加和。看如何来估算一下这段代码的执行时间
int cal(int n) {int sum 0;int i 1;for (; i < n; i) {sum sum i;}ret…
问题描述
postgresql数据库执行delete报错:attempted to delete invisible tuple,执行同样条件的select不报错
delete from lzltab1;
select count(*) from lzltab1;执行全表删除和全表查询的结果:
M# delete from lzltab1;
ERROR: 5500…