/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/sqlc_embed/sqlite/schema.sql
17 строк
283 B
Kyle Gray
feat(sqlite): Add database analyzer using ncruces/go-sqlite3 (#4199)
30 ноя 2025, 01:19
Не верифицирован
30 ноя 2025, 01:19
b83465a
Код
Авторство
О чём код?
ATTACH ':memory:' AS baz; CREATE TABLE users ( id integer PRIMARY KEY, name text NOT NULL, age integer ); CREATE TABLE posts ( id integer PRIMARY KEY, user_id integer NOT NULL ); CREATE TABLE baz.users ( id integer PRIMARY KEY, name text NOT NULL );