Xegulon
Xegulon
Yeah, I'd love to see it too. For self-documenting the code, it's great. @AndriiSherman maybe you could show me which files to modify so that I can make a PR?
what about a ref that we can use with `ref.current.slideTo(index)` ? ``
@OlivierCavadenti What about this: ```js whereLike(statement, collation = 'utf8_bin') { return `${this._columnClause(statement)} ${this._not( statement, 'like ' )}${this._valueClause(statement)} COLLATE ${collation}`; } ``` ?
> Could you please send a schema as code snippet, so I can test with it? @AndriiSherman ```javascript import { serial, text, timestamp, pgTable, boolean, pgEnum, } from 'drizzle-orm/pg-core'; export...
Sure, here it is @AndriiSherman: ```json { "compilerOptions": { "module": "commonjs", "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ES2021", "sourceMap": true, "outDir": "./dist", "baseUrl": "./", "incremental":...
> Is there an intermediate solution for this other than reducing drizzle-orm version ? Defining your insert type manually can be a solution maybe?
@Grohden even with `strict: true`, I have the same problem.
@Grohden yes I tried, same problem > @xegulon did you try strict + strictNullChecks?
@Grohden I retried with strictNullChecks true, and I do not have the problem anymore, please excuse the first message that contradicts this. @AndriiSherman I do not know if keeping this...