/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/table_name_case_sensitivity/sqlite/schema.sql
13 строк
602 B
Meet Rajesh Gor
bugfix: Normalize identifier usage for table names (#4045)
12 авг 2025, 22:46
Не верифицирован
12 авг 2025, 22:46
fe96e12
Код
Авторство
О чём код?
-- Test table name case sensitivity handling across different SQLite operations -- Create tables with different case patterns to verify consistent name resolution CREATE TABLE users (id integer primary key, name text); CREATE TABLE "Authors" (id integer primary key, name text); CREATE TABLE Books (id integer primary key, title text); -- Create a temporary table to test drop operations CREATE TABLE temp_orders (id integer primary key); DROP TABLE temp_orders; -- Create another temp table with quoted identifier CREATE TABLE "temp_products" (id integer primary key); DROP TABLE "temp_products";