This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN; | |
CREATE SEQUENCE path_seq; | |
CREATE TABLE path ( | |
id INTEGER PRIMARY KEY DEFAULT NEXTVAL('path_seq'), | |
it INTEGER, | |
x0 TEXT NOT NULL, | |
x1 TEXT NOT NULL | |
); | |
CREATE INDEX path_delta_idx ON path (it); | |
CREATE INDEX path0_idx ON path (x0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate alloc as b; | |
mod foo { | |
mod bar { | |
pub(in b::string::String::newy) extern crate alloc as e; | |
} | |
} |
OlderNewer