**Issue type:** [ ] question [x] bug report [ ] feature request [ ] documentation issue **Database system/driver:** [ ] `cordova` [ ] `mongodb` [ ] `mssql` [ ] `mysql` / `mariadb` [ ] `oracle` [x] `postgres` [ ] `sqlite` [ ] `sqljs` [ ] `react-native` [ ] `expo` **TypeORM version:** [x] `latest` [ ] `@next` [ ] `0.x.x` (or put your version here) **Steps to reproduce or a small repository showing the problem:** ```ts await this.tableRepo .createQueryBuilder() .insert() .into(Table) .values([]) .execute() ``` ```sql INSERT INTO "table"("row1", "row2", "row3") VALUES (DEFAULT, DEFAULT, DEFAULT) ``` <!-- To answer those questions you need to put "x" inside the square brackets, for example: [x] `mysql` [ ] `postgres` Also, please format your code properly (by taking code blocks into ```ts .... ```) !>