github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/sql/sem/tree/testdata/pretty/import3.align-only.golden (about)

     1  // Code generated by TestPretty. DO NOT EDIT.
     2  // GENERATED FILE DO NOT EDIT
     3  1:
     4  -
     5  IMPORT
     6  TABLE
     7  	t
     8  CREATE USING
     9  	'http://test'
    10  CSV
    11  	DATA (
    12  		$1,
    13  		'http://csv'
    14  	)
    15  
    16  12:
    17  ------------
    18        IMPORT
    19         TABLE t
    20  CREATE USING 'http://test'
    21           CSV DATA (
    22  				$1,
    23  				'http://csv'
    24               )
    25  
    26  36:
    27  ------------------------------------
    28        IMPORT
    29         TABLE t
    30  CREATE USING 'http://test'
    31           CSV DATA ($1, 'http://csv')
    32  
    33  69:
    34  ---------------------------------------------------------------------
    35  IMPORT TABLE t CREATE USING 'http://test' CSV DATA ($1, 'http://csv')
    36  
    37