-
With MySQL you can create different tables but as clones from others and without redeclaring the same columns, e.g.
```sql
CREATE TABLE drafts AS
SELECT
*
FROM
posts
WHERE
1 = 0;
```
.…
205g0 updated
1 month ago
-
Upon running `introspect:pg`, drizzle-kit does it's thing and manages to pull down the database and create a schema. However, it appears to choke on `jsonb` columns with a default value. This is what …
-
### What version of `drizzle-orm` are you using?
0.30.7
### What version of `drizzle-kit` are you using?
0.20.14
### Describe the Bug
1. Have an existing Prisma DB
2. Create drizzle co…
-
When introspecting tuned-ppd with d-feet or d-spy, the properties don't show up. But if I call org.freedesktop.DBus.Properties.GetAll, it actually answers. I think the D-Bus XML description is missing…
-
**Context :** Our Event size has increased to 12 Kb per event, with user-properties taking 90% of space and hence leading to high storage costs. This has lead to us introspecting on need of many user-…
-
**Describe the bug**
When I call into the OIDC provider's `/o/application/introspect` endpoint, or trigger it via the traefik-forward-auth outpost, it always return `{"isActive":"false"}`.
The bug h…
-
Sorry beforehand if this is a dumb question and I'm just using the LSP wrong.
I'm using https://www.lazyvim.org/ as my package manager for Neovim and here's my `~/.config/nvim/lua/plugins/idris2.lu…
-
**Information**
- `ratbagd` version (`ratbagd --version`): 0.18
- Distribution: Arch
- Kernel version (ex. `uname -srmo`): Linux 6.11.3-arch1-1 x86_64
Device info (if applicable): Logitech G50…
-
**What is your use-case and why do you need this feature?**
I support a format where `Nothing` in its schema is meaningful, e.g. `List` is encoded differently than an empty `List`. So far I have be…
-
With introspect, schema indexes are created FK, PK, and Unique order.
However, since there is no trailing comma in the PK, an error occurs in Unique indexes.
missing in the createTablePKs func…