-
This statement creates the unified 990s table:
```
create table form (
id bigserial primary key,
created_at timestamp default current_timestamp,
updated_at timestamp default current_timestamp,
sourc…
-
I found a bug in presto bitwise_arithmetic_shift_right function when shifting negative big int to the right beyond 63 digits.
-- -- Result -2, -1, -9223372036854775808
-- select bitwise_arithmetic_s…
-
### Bug description
With this simple model:
```prisma
model Product {
id BigInt @id
name String
}
```
(I'm using Twitter snowflake id generation)
The call to:
`this.prisma.p…
-
The following schema:
```prisma
model test {
id BigInt @id @default(autoincrement())
counter BigInt @default(0)
}
```
results in the following migration:
```sql
CREATE TABLE "ne…
-
**Problem**
Switched cube pre-aggregation storage (memory driver) from postgres to cubestore, encountered several feature not supported and data related precision issues, one of them is:
```
ERR…
-
Jira Link: [DB-5797](https://yugabyte.atlassian.net/browse/DB-5797)
### Description
In case of join condition on range index with one filter condition of range partitioned table again nested loop wa…
-
## Bug Report
Version: - 8.0.33-ShardingSphere-Proxy 5.3.2
Project Used: - ShardingSphere_Proxy
Expected behaviour: - count(distinct column_name) should always return a 'BIGINT' value.
Actual be…
-
Hi guys, I am using `serde_json` to deserialize a JSON file into a struct, `MyStruct`
```rust
use std::{io::BufReader, fs::File};
use serde::Deserialize;
use num_bigint::BigInt;
#[derive(Dese…
-
**Describe the bug**
Ares Exporter fails on numeric type because temp table in memory has autosensing data type conversion issue. A search on github Ares issues didn't yield anything for me if this h…
-
### Steps to reproduce
I can't get the standalone tests running on ARM64. But here is the code that reproduces it in my schema.rb:
create_table "account_users", id: { limit: 19, precision: 19 },…