|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`non-pretty: pretty/casing-1.sql 1`] = `"INSERT INTO users (name) VALUES ('John Doe')"`; |
| 4 | + |
| 5 | +exports[`non-pretty: pretty/casing-2.sql 1`] = `"INSERT INTO users (name) VALUES ('ADMINISTRATOR')"`; |
| 6 | + |
| 7 | +exports[`non-pretty: pretty/casing-3.sql 1`] = `"INSERT INTO users (name) VALUES ('lowercase')"`; |
| 8 | + |
| 9 | +exports[`non-pretty: pretty/casing-4.sql 1`] = `"INSERT INTO users (name) VALUES ('camelCaseString')"`; |
| 10 | + |
| 11 | +exports[`non-pretty: pretty/casing-5.sql 1`] = `"INSERT INTO users (name) VALUES ('snake_case_string')"`; |
| 12 | + |
| 13 | +exports[`non-pretty: pretty/casing-6.sql 1`] = `"INSERT INTO users (name) VALUES ('kebab-case-value')"`; |
| 14 | + |
| 15 | +exports[`non-pretty: pretty/casing-7.sql 1`] = `"INSERT INTO data.snapshots (metadata) VALUES ('{"Type": "Full", "Status": "OK"}')"`; |
| 16 | + |
| 17 | +exports[`non-pretty: pretty/casing-8.sql 1`] = `"INSERT INTO "AppSchema"."User Data" ("Full Name") VALUES ('Jane Smith')"`; |
| 18 | + |
| 19 | +exports[`non-pretty: pretty/casing-9.sql 1`] = `"INSERT INTO logtable (message) VALUES ('Init')"`; |
| 20 | + |
| 21 | +exports[`non-pretty: pretty/casing-10.sql 1`] = `"INSERT INTO metrics.logs (message) VALUES ('NOW()')"`; |
| 22 | + |
| 23 | +exports[`non-pretty: pretty/casing-11.sql 1`] = `"INSERT INTO users (name) VALUES ('SELECT')"`; |
| 24 | + |
| 25 | +exports[ `non-pretty: pretty/casing-12.sql 1`] = `"INSERT INTO users (name) VALUES ('[email protected]')"`; |
| 26 | + |
| 27 | +exports[`non-pretty: pretty/casing-13.sql 1`] = `"SELECT 'MixedCase'"`; |
| 28 | + |
| 29 | +exports[`non-pretty: pretty/casing-14.sql 1`] = `"SELECT 'UPPERCASE'"`; |
| 30 | + |
| 31 | +exports[`non-pretty: pretty/casing-15.sql 1`] = `"SELECT 'lowercase'"`; |
| 32 | + |
| 33 | +exports[`non-pretty: pretty/casing-16.sql 1`] = `"SELECT 'camelCase'"`; |
| 34 | + |
| 35 | +exports[`non-pretty: pretty/casing-17.sql 1`] = `"SELECT 'snake_case'"`; |
| 36 | + |
| 37 | +exports[`non-pretty: pretty/casing-18.sql 1`] = `"SELECT 'kebab-case'"`; |
| 38 | + |
| 39 | +exports[`non-pretty: pretty/casing-19.sql 1`] = `"SELECT 'SELECT * FROM users'"`; |
| 40 | + |
| 41 | +exports[`non-pretty: pretty/casing-20.sql 1`] = `"SELECT 'sum(a + b)'"`; |
| 42 | + |
| 43 | +exports[`non-pretty: pretty/casing-21.sql 1`] = `"SELECT name AS "UserLabel" FROM users"`; |
| 44 | + |
| 45 | +exports[`non-pretty: pretty/casing-22.sql 1`] = `"SELECT * FROM users WHERE name = 'camelCaseString'"`; |
| 46 | + |
| 47 | +exports[`non-pretty: pretty/casing-23.sql 1`] = `"SELECT * FROM users WHERE name = 'lowercase'"`; |
| 48 | + |
| 49 | +exports[`non-pretty: pretty/casing-24.sql 1`] = `"SELECT * FROM users WHERE name = 'ADMINISTRATOR'"`; |
| 50 | + |
| 51 | +exports[`non-pretty: pretty/casing-25.sql 1`] = `"SELECT * FROM logs WHERE message LIKE 'Warn%'"`; |
| 52 | + |
| 53 | +exports[`non-pretty: pretty/casing-26.sql 1`] = `"SELECT * FROM alerts WHERE level IN ('Low', 'MEDIUM', 'High', 'CRITICAL')"`; |
| 54 | + |
| 55 | +exports[`non-pretty: pretty/casing-27.sql 1`] = `"SELECT 'It''s working'"`; |
| 56 | + |
| 57 | +exports[`non-pretty: pretty/casing-28.sql 1`] = `"SELECT E'Line1\\\\nLine2'"`; |
| 58 | + |
| 59 | +exports[`non-pretty: pretty/casing-29.sql 1`] = `"SELECT 'Status: ✅'"`; |
| 60 | + |
| 61 | +exports[`non-pretty: pretty/casing-30.sql 1`] = `"SELECT 'ALERT' AS "Level""`; |
| 62 | + |
| 63 | +exports[`non-pretty: pretty/casing-31.sql 1`] = `"SELECT "HandleInsert"('TYPE_A', 'Region-1')"`; |
| 64 | + |
| 65 | +exports[`non-pretty: pretty/casing-32.sql 1`] = `"SELECT * FROM "dataPoints""`; |
| 66 | + |
| 67 | +exports[`pretty: pretty/casing-1.sql 1`] = ` |
| 68 | +"INSERT INTO users (name) VALUES |
| 69 | +('John Doe')" |
| 70 | +`; |
| 71 | + |
| 72 | +exports[`pretty: pretty/casing-2.sql 1`] = ` |
| 73 | +"INSERT INTO users (name) VALUES |
| 74 | +('ADMINISTRATOR')" |
| 75 | +`; |
| 76 | + |
| 77 | +exports[`pretty: pretty/casing-3.sql 1`] = ` |
| 78 | +"INSERT INTO users (name) VALUES |
| 79 | +('lowercase')" |
| 80 | +`; |
| 81 | + |
| 82 | +exports[`pretty: pretty/casing-4.sql 1`] = ` |
| 83 | +"INSERT INTO users (name) VALUES |
| 84 | +('camelCaseString')" |
| 85 | +`; |
| 86 | + |
| 87 | +exports[`pretty: pretty/casing-5.sql 1`] = ` |
| 88 | +"INSERT INTO users (name) VALUES |
| 89 | +('snake_case_string')" |
| 90 | +`; |
| 91 | + |
| 92 | +exports[`pretty: pretty/casing-6.sql 1`] = ` |
| 93 | +"INSERT INTO users (name) VALUES |
| 94 | +('kebab-case-value')" |
| 95 | +`; |
| 96 | + |
| 97 | +exports[`pretty: pretty/casing-7.sql 1`] = ` |
| 98 | +"INSERT INTO data.snapshots (metadata) VALUES |
| 99 | +('{"Type": "Full", "Status": "OK"}')" |
| 100 | +`; |
| 101 | + |
| 102 | +exports[`pretty: pretty/casing-8.sql 1`] = ` |
| 103 | +"INSERT INTO "AppSchema"."User Data" ("Full Name") VALUES |
| 104 | +('Jane Smith')" |
| 105 | +`; |
| 106 | + |
| 107 | +exports[`pretty: pretty/casing-9.sql 1`] = ` |
| 108 | +"INSERT INTO logtable (message) VALUES |
| 109 | +('Init')" |
| 110 | +`; |
| 111 | + |
| 112 | +exports[`pretty: pretty/casing-10.sql 1`] = ` |
| 113 | +"INSERT INTO metrics.logs (message) VALUES |
| 114 | +('NOW()')" |
| 115 | +`; |
| 116 | + |
| 117 | +exports[`pretty: pretty/casing-11.sql 1`] = ` |
| 118 | +"INSERT INTO users (name) VALUES |
| 119 | +('SELECT')" |
| 120 | +`; |
| 121 | + |
| 122 | +exports[`pretty: pretty/casing-12.sql 1`] = ` |
| 123 | +"INSERT INTO users (name) VALUES |
| 124 | + |
| 125 | +`; |
| 126 | + |
| 127 | +exports[`pretty: pretty/casing-13.sql 1`] = `"SELECT 'MixedCase'"`; |
| 128 | + |
| 129 | +exports[`pretty: pretty/casing-14.sql 1`] = `"SELECT 'UPPERCASE'"`; |
| 130 | + |
| 131 | +exports[`pretty: pretty/casing-15.sql 1`] = `"SELECT 'lowercase'"`; |
| 132 | + |
| 133 | +exports[`pretty: pretty/casing-16.sql 1`] = `"SELECT 'camelCase'"`; |
| 134 | + |
| 135 | +exports[`pretty: pretty/casing-17.sql 1`] = `"SELECT 'snake_case'"`; |
| 136 | + |
| 137 | +exports[`pretty: pretty/casing-18.sql 1`] = `"SELECT 'kebab-case'"`; |
| 138 | + |
| 139 | +exports[`pretty: pretty/casing-19.sql 1`] = `"SELECT 'SELECT * FROM users'"`; |
| 140 | + |
| 141 | +exports[`pretty: pretty/casing-20.sql 1`] = `"SELECT 'sum(a + b)'"`; |
| 142 | + |
| 143 | +exports[`pretty: pretty/casing-21.sql 1`] = ` |
| 144 | +"SELECT name AS "UserLabel" |
| 145 | +FROM users" |
| 146 | +`; |
| 147 | + |
| 148 | +exports[`pretty: pretty/casing-22.sql 1`] = ` |
| 149 | +"SELECT * |
| 150 | +FROM users |
| 151 | +WHERE |
| 152 | + name = 'camelCaseString'" |
| 153 | +`; |
| 154 | + |
| 155 | +exports[`pretty: pretty/casing-23.sql 1`] = ` |
| 156 | +"SELECT * |
| 157 | +FROM users |
| 158 | +WHERE |
| 159 | + name = 'lowercase'" |
| 160 | +`; |
| 161 | + |
| 162 | +exports[`pretty: pretty/casing-24.sql 1`] = ` |
| 163 | +"SELECT * |
| 164 | +FROM users |
| 165 | +WHERE |
| 166 | + name = 'ADMINISTRATOR'" |
| 167 | +`; |
| 168 | + |
| 169 | +exports[`pretty: pretty/casing-25.sql 1`] = ` |
| 170 | +"SELECT * |
| 171 | +FROM logs |
| 172 | +WHERE |
| 173 | + message LIKE 'Warn%'" |
| 174 | +`; |
| 175 | + |
| 176 | +exports[`pretty: pretty/casing-26.sql 1`] = ` |
| 177 | +"SELECT * |
| 178 | +FROM alerts |
| 179 | +WHERE |
| 180 | + level IN ('Low', 'MEDIUM', 'High', 'CRITICAL')" |
| 181 | +`; |
| 182 | + |
| 183 | +exports[`pretty: pretty/casing-27.sql 1`] = `"SELECT 'It''s working'"`; |
| 184 | + |
| 185 | +exports[`pretty: pretty/casing-28.sql 1`] = `"SELECT E'Line1\\\\nLine2'"`; |
| 186 | + |
| 187 | +exports[`pretty: pretty/casing-29.sql 1`] = `"SELECT 'Status: ✅'"`; |
| 188 | + |
| 189 | +exports[`pretty: pretty/casing-30.sql 1`] = `"SELECT 'ALERT' AS "Level""`; |
| 190 | + |
| 191 | +exports[`pretty: pretty/casing-31.sql 1`] = `"SELECT "HandleInsert"('TYPE_A', 'Region-1')"`; |
| 192 | + |
| 193 | +exports[`pretty: pretty/casing-32.sql 1`] = ` |
| 194 | +"SELECT * |
| 195 | +FROM "dataPoints"" |
| 196 | +`; |
0 commit comments