C++: Add an upgrade script

This commit is contained in:
Ian Lynagh
2019-08-28 16:06:28 +01:00
parent 6d18b4e894
commit cc031183bc
5 changed files with 3823 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
description: Split off valuetext table
compatibility: partial
values.rel: run values.qlo
valuetext.rel: run valuetext.qlo

View File

@@ -0,0 +1,7 @@
class Value extends @value { string toString() { none() } }
from Value v, string s
where values(v, s, _)
select v, s

View File

@@ -0,0 +1,7 @@
class Value extends @value { string toString() { none() } }
from Value v, string s
where values(v, _, s)
select v, s