-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Database
-
Labels:None
-
Story Points:1
I'd expect this to work:
karaf@root()> insert into repository_configuration SET repository_name='test', recipe_name='simple-hosted' Error: com.orientechnologies.orient.core.exception.OCommandExecutionException: Error on execution of command: sql.insert into repository_configuration SET repository_name=test, recipe_name=simple-hosted Error: com.orientechnologies.orient.core.exception.OValidationException: The field 'repository_configuration.recipe_name' cannot be null, record: repository_configuration{repository_name:null,recipe_name:null}
... but it does not.
This however does work:
karaf@root()> insert into repository_configuration SET repository_name=\'test\', recipe_name=\'simple-hosted\' Inserted record 'repository_configuration#11:0{repository_name:test,recipe_name:simple-hosted} v1' in 0.002000 sec(s).