/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/comment_on/postgresql/stdlib/schema.sql
15 строк
444 B
Kyle Gray
test(endtoend): Split shema and queries (#2803)
04 окт 2023, 19:13
Не верифицирован
04 окт 2023, 19:13
5664224
Код
Авторство
О чём код?
CREATE SCHEMA foo; CREATE TABLE foo.bar ( baz text NOT NULL ); CREATE VIEW foo.bat AS SELECT * FROM foo.bar; CREATE TYPE foo.mood AS ENUM ('sad', 'ok', 'happy'); COMMENT ON SCHEMA foo IS 'this is the foo schema'; COMMENT ON TYPE foo.mood IS 'this is the mood type'; COMMENT ON TABLE foo.bar IS 'this is the bar table'; COMMENT ON COLUMN foo.bar.baz IS 'this is the baz column'; COMMENT ON VIEW foo.bat IS 'this is the bat view ';