Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Issue #21 (NPE fix) for 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasters committed Jan 12, 2019
1 parent 8a98fe1 commit 4b34111
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public String open() {
ColumnInfo[] columns = new ColumnInfo[] {
new ColumnInfo( BaseMessages.getString( PKG, "BeamBQInputDialog.Fields.Column.Name" ), ColumnInfo.COLUMN_TYPE_TEXT, false, false ),
new ColumnInfo( BaseMessages.getString( PKG, "BeamBQInputDialog.Fields.Column.NewName" ), ColumnInfo.COLUMN_TYPE_TEXT, false, false ),
new ColumnInfo( BaseMessages.getString( PKG, "BeamBQInputDialog.Fields.Column.NewName" ), ColumnInfo.COLUMN_TYPE_CCOMBO, ValueMetaFactory.getValueMetaNames(), false ),
new ColumnInfo( BaseMessages.getString( PKG, "BeamBQInputDialog.Fields.Column.KettleType" ), ColumnInfo.COLUMN_TYPE_CCOMBO, ValueMetaFactory.getValueMetaNames(), false ),
};
wFields = new TableView( Variables.getADefaultVariableSpace(), shell, SWT.NONE, columns, input.getFields().size(), null, props);
props.setLook( wFields );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ BeamBQInputDialog.DatasetId = Data Set ID
BeamBQInputDialog.TableId = Table ID
BeamBQInputDialog.Query = Query (blank mean everything)
BeamBQInputDialog.Fields = Return fields selection:
BeamBQInputDialog.Fields.Column.Name = BQ Field name
BeamBQInputDialog.Fields.Column.NewName = Rename to... (optional)
BeamBQInputDialog.Fields.Column.KettleType = Kettle data type

BeamBQOutputDialog.DialogTitle = Beam BigQuery Output
BeamBQOutputDialog.ProjectId = Project ID
Expand Down

0 comments on commit 4b34111

Please sign in to comment.