From 8b58b8acfad1c6ce46ef247afcaec25e1254f6b1 Mon Sep 17 00:00:00 2001 From: Lukas Fittl Date: Mon, 1 Jan 2024 11:40:38 -0800 Subject: [PATCH] Windows support: Don't use CRLFs for regression test .sql files Git automatically converts simple LFs to CRLFs on Windows when checking out code, which appears to break the deparser tests. For now simply turn off this behaviour for any *.sql files in the repository. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..0c9fe52d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sql binary \ No newline at end of file