-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
connection requires a valid client certificate #28149
Comments
module.findSourceMap
is not a function
Does the error occur in Deno |
pg query code: console error:
|
create or replace function update_ut_col() returns trigger as $$
begin
if new.* is not distinct from old.* then
return null; -- 无变化时什么也不做包括创建新版本数据,如果 return old 实际依然会创建新版本数据
end if;
new.ut = current_timestamp;
return new;
end;
$$ language plpgsql;
-- 用户表
create table if not exists bm_test1 (
id bigint generated always as identity primary key,
ct timestamp not null default current_timestamp,
ut timestamp not null default current_timestamp,
name varchar(64)
);
create trigger update_ut before update on bm_test1 for each row execute function update_ut_col();
-- 清空数据;
-- 初始化数据;
insert into bm_test1 (name) values ('test1'), ('test2'), ('test3'), ('test4'), ('test5'),
('test6'), ('test7'), ('test8'), ('test9'), ('test10'); |
Right, sounds like the original issue is fixed. The other one you're seeing now sounds similar to #26584 . There is essentially code somewhere in the dependency tree that relies un unsafe prototype assignment. The workaround is to add this to {
"unstable": ["unsafe-proto"]
} |
my code is run ok in pnpm. pg with ssl verify-full
after deno.json with
error is
|
module.findSourceMap
is not a function
test: verify-ca
the code run ok. my crt an key gen code
|
db.ts
|
Version: Deno x.x.x
dependencies:
The text was updated successfully, but these errors were encountered: