From 31ee2669a23663bd72158123db2b1b3691fceb97 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