ExportDialog.java Line 1539 and Export Thread.java Line 111
Export View on nCluster - IvanDB -> public.IvanTestTable_view and you will get a Null Pointer Exception
|
62 KB
We need to know if it is a table or view, so that we can extract a Table or a View.
modified code to pass this iinformation.
Please implement the actual export code in:
ExportThread:117
GenerateExportAquascript.scriptSelectView()
GenerateExportAquascript:199
Also, it looks like GenerateExportAquascript.generateInsert() was never implemented.
modified code to pass this iinformation.
Please implement the actual export code in:
ExportThread:117
GenerateExportAquascript.scriptSelectView()
GenerateExportAquascript:199
Also, it looks like GenerateExportAquascript.generateInsert() was never implemented.
Made the extraction changes for views.
GenerateExportAquascript.scriptSelectView() is never used and commented out for now till removed.
whether it is a vew or a table the scriptSelectTable() is used as ScriptTable.scriptSELECT is used for both tables and views.
GenerateExportAquascript.generateInsert() -> needs to be implemented. filed as separate bug, Issue ID 6423
revision: 25304
Made the extraction changes for views.
GenerateExportAquascript.scriptSelectView() is never used and commented out for now till removed.
whether it is a vew or a table the scriptSelectTable() is used as ScriptTable.scriptSELECT is used for both tables and views.
GenerateExportAquascript.generateInsert() -> needs to be implemented. filed as separate bug, Issue ID 6423
revision: 25304
Issue #6422 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build 10.0.7_02 |
No time estimate |
We need to know if it is a table or view, so that we can extract a Table or a View.