Skip to content

Commit 6689061

Browse files
committed
"Real" SQL databases apparently like to lowercase column names by default.
1 parent dc2015e commit 6689061

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/latex/defmacro.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
line
22
%% DEFMACRO
3-
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS ABCD, 'hello' AS c
3+
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS abcd, 'hello' AS c
44
\def\a{42.005}
55
\def\mc{42.05}
6-
\def\ABCD{42.5}
6+
\def\abcd{42.5}
77
\def\c{hello}
88
line
99
%% DEFMACRO REFORMAT(round=0)
10-
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS ABCD, 'hello' AS c
10+
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS abcd, 'hello' AS c
1111
\def\a{42}
1212
\def\mc{42}
13-
\def\ABCD{43}
13+
\def\abcd{43}
1414
\def\c{hello}
1515

1616
this is the end

tests/latex/defmacro.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
line
22
%% DEFMACRO
3-
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS ABCD, 'hello' AS c
3+
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS abcd, 'hello' AS c
44
\def\gobble{this}
55
\def\andthis{...}
66
line
77
%% DEFMACRO REFORMAT(round=0)
8-
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS ABCD, 'hello' AS c
8+
%% SELECT 42.005 AS a, 42.05 AS mc, 42.5 AS abcd, 'hello' AS c
99

1010
this is the end

0 commit comments

Comments
 (0)