mirror of
https://github.com/github/codeql.git
synced 2026-04-29 18:55:14 +02:00
C++: Add an upgrade script
This commit is contained in:
1900
cpp/upgrades/cac7e92107084af19112986145f72b8de646c39d/old.dbscheme
Normal file
1900
cpp/upgrades/cac7e92107084af19112986145f72b8de646c39d/old.dbscheme
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
description: Split off valuetext table
|
||||
compatibility: partial
|
||||
values.rel: run values.qlo
|
||||
valuetext.rel: run valuetext.qlo
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
|
||||
class Value extends @value { string toString() { none() } }
|
||||
|
||||
from Value v, string s
|
||||
where values(v, s, _)
|
||||
select v, s
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
|
||||
class Value extends @value { string toString() { none() } }
|
||||
|
||||
from Value v, string s
|
||||
where values(v, _, s)
|
||||
select v, s
|
||||
|
||||
Reference in New Issue
Block a user