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
Version: CockroachDB CCL v19.2.2 (x86_64-apple-darwin14, built 2019/12/11 01:27:47, go1.12.12) | |
CREATE TABLE salaries ( | |
emp_no INT8 NOT NULL, | |
salary INT8 NOT NULL, | |
from_date DATE NOT NULL, | |
to_date DATE NOT NULL, | |
CONSTRAINT "primary" PRIMARY KEY (emp_no ASC, from_date ASC), | |
CONSTRAINT salaries_ibfk_1 FOREIGN KEY (emp_no) REFERENCES employees(emp_no) ON DELETE CASCADE, |
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
Version: CockroachDB CCL v19.2.2 (x86_64-apple-darwin14, built 2019/12/11 01:27:47, go1.12.12) | |
CREATE TABLE salaries ( | |
emp_no INT8 NOT NULL, | |
salary INT8 NOT NULL, | |
from_date DATE NOT NULL, | |
to_date DATE NOT NULL, | |
CONSTRAINT "primary" PRIMARY KEY (emp_no ASC, from_date ASC), | |
CONSTRAINT salaries_ibfk_1 FOREIGN KEY (emp_no) REFERENCES employees(emp_no) ON DELETE CASCADE, |
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
diff --git a/src/edwin/editor.scm b/src/edwin/editor.scm | |
index 5d23827..933e22d 100644 | |
--- a/src/edwin/editor.scm | |
+++ b/src/edwin/editor.scm | |
@@ -28,13 +28,13 @@ USA. | |
(declare (usual-integrations)) | |
-(define (edit . args) | |
+(define (edit file . args) |
NewerOlder