From 54494fd23bd3c7f1b63bd5762b0ef605b804068c Mon Sep 17 00:00:00 2001 From: griffio Date: Mon, 1 May 2023 14:44:21 +0100 Subject: [PATCH] Fix failing test lowercase to compile - not sure if this should matter --- .../app/cash/sqldelight/postgresql/integration/Characters.sq | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqldelight-gradle-plugin/src/test/integration-postgresql/src/main/sqldelight/app/cash/sqldelight/postgresql/integration/Characters.sq b/sqldelight-gradle-plugin/src/test/integration-postgresql/src/main/sqldelight/app/cash/sqldelight/postgresql/integration/Characters.sq index 025634bacdcf..50950965086a 100644 --- a/sqldelight-gradle-plugin/src/test/integration-postgresql/src/main/sqldelight/app/cash/sqldelight/postgresql/integration/Characters.sq +++ b/sqldelight-gradle-plugin/src/test/integration-postgresql/src/main/sqldelight/app/cash/sqldelight/postgresql/integration/Characters.sq @@ -7,7 +7,7 @@ insertCharacter: INSERT INTO characters (name, description) VALUES (:name, :description); selectNameLength: - SELECT LENGTH(name) FROM characters; + SELECT length(name) FROM characters; selectDescriptionLength: - SELECT LENGTH(description) FROM characters; + SELECT length(description) FROM characters;