annotate tests/table.ur @ 2142:3288e3c9948b

Fix XML indentation in Emacs mode The return value of MATCH-STRING is a string. At least on Emacs 25, the comparisons between string and character with EQUAL could never succeed, and so the cases for matching braces were never triggered. GET-TEXT-PROPERTY may return a list rather than an atom (for example, on long lines with whitespace-mode turned on), and this broke the heuristic of looking for the tag face in previous text.
author Julian Squires <julian@cipht.net>
date Mon, 04 May 2015 14:35:07 -0400
parents 71bafe66dbe1
children
rev   line source
adamc@205 1 table t1 : {A : int, B : string, C : float}
adamc@207 2 table t2 : {A : float, D : int}
adamc@204 3
adamc@205 4 val q1 = (SELECT * FROM t1)
adamc@205 5
adamc@205 6 val q2 = (SELECT * FROM t1, t2)
adamc@205 7
adamc@205 8 (*val q3 = (SELECT * FROM t1, t1)*)
adamc@205 9 val q3 = (SELECT * FROM t1, t1 AS T2)
adamc@205 10
adamc@221 11 val q4 = (SELECT * FROM {{t1}} AS T, t1 AS T2)
adamc@207 12
adamc@207 13 val q5 = (SELECT t1.A FROM t1)
adamc@207 14 val q6 = (SELECT t1.B, t1.C, t1.A FROM t1)
adamc@207 15
adamc@207 16 val q7 = (SELECT t1.A, t2.A FROM t1, t2)