-
### Description
https://github.com/user-attachments/assets/6eb2ce3c-1024-495b-9024-68444127503b
Actual query:
```
SELECT "f.title", COUNT(*) FROM (
select f
from film as f
) src
GROUP BY "…
ask9 updated
14 hours ago
-
### Description
**Expected**: columns are taken from "film" table
**Actual**: columns are taken from "category" table
https://github.com/user-attachments/assets/f6c7a2fb-c3ba-451a-b680-9d591e9e…
-
# Error log
```log
err=db:Notice { storage: b"SFATAL\0VFATAL\0C53300\0Msorry, too many clients already\0Fproc.c\0L350\0RInitProcess\0\0", severity: Fatal, message: (22, 53), code: (15, 20) }
```
…
-
Hello,
Its a very common use case where an explicit primary key is not defined on the table but instead rely on the unique index. The ODBC driver is expected to return the columns that are of the U…
-
I just upgraded Koillection to 1.5.15 but now I got this error :
```
Doctrine\DBAL\Exception\ConnectionException:
An exception occurred in the driver: SQLSTATE[08006] [7] could not translate host…
-
### Version
main branch
### Describe what's wrong
ADD COLUMN NOT NULL as following, it failed.
I think the NULL value of the name column shouldn't impact add the column "gender".
```
CREATE …
-
### Description
https://github.com/user-attachments/assets/14798a63-235f-46e2-89aa-0103ce4a14b4
- create table:
```
create table "HelloWorld3" (
"HelloId" int,
"HelloMessage" text
)…
-
### Description
- use code:
```
create table tab2 (
a int not null primary key,
b int null default '777'
);
select *
from tab2
;
```
Expected: the value in the cell became NULL aft…
-
### Current Behavior
2024-09-26 12:15:21,524 [] INFO [alpine.embedded.EmbeddedJettyServer] alpine-executable-war v2.2.5 (c3a1a709-acdc-4ca7-96dd-5eaab858ee32) built on: 2024-02-29T20:30:01Z
2024-09-2…
-
### Description
- use the query for dvdrental:
```
select f.title
from film as f
union all
select replace(f.title, ' ', '_')
from film as f
```
https://github.com/user-attachments/assets/6…