blob: 16139e9498c7e0f9369b14d4ed882f6a34283c15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* dqfile can not - missing langver support */
/* hybridfile can not - missing langver support */
USE plato;
PRAGMA YqlSelect = 'force';
PRAGMA TablePathPrefix = '//';
INSERT INTO @Input (subkey) VALUES ('192837');
COMMIT;
$x = 'In' || 'put';
SELECT * FROM Input ORDER BY subkey;
SELECT * FROM `Input` ORDER BY subkey;
SELECT * FROM $x ORDER BY subkey;
SELECT * FROM @Input ORDER BY subkey;
SELECT * FROM @`Input` ORDER BY subkey;
SELECT * FROM @$x ORDER BY subkey;
|