This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch 2.1-tmp
in repository https://gitbox.apache.org/repos/asf/doris.git

commit 61e214c3270303a8375f64f2d499310ad9bb7158
Author: Tiewei Fang <43782773+bepppo...@users.noreply.github.com>
AuthorDate: Sun Mar 31 21:55:44 2024 +0800

    [Fix](Hive-Metastore)  fix that if JDBC reads the NULL value, it will cause 
NPE (#32831)
---
 .../hive/PostgreSQLJdbcHMSCachedClient.java        | 30 +++++-----
 .../hive/jdbc_hive_meta/test_jdbc_hive_orc.out     | 66 +++++++++++-----------
 2 files changed, 50 insertions(+), 46 deletions(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/PostgreSQLJdbcHMSCachedClient.java
 
b/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/PostgreSQLJdbcHMSCachedClient.java
index 47a76dd0fea..11cec91eb90 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/PostgreSQLJdbcHMSCachedClient.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/PostgreSQLJdbcHMSCachedClient.java
@@ -30,7 +30,6 @@ import com.google.common.base.Joiner;
 import com.google.common.collect.ImmutableList;
 import com.google.common.collect.ImmutableList.Builder;
 import com.google.common.collect.ImmutableMap;
-import com.google.common.collect.Lists;
 import org.apache.commons.lang3.NotImplementedException;
 import org.apache.hadoop.hive.common.ValidWriteIdList;
 import org.apache.hadoop.hive.metastore.IMetaStoreClient.NotificationFilter;
@@ -50,7 +49,6 @@ import org.apache.logging.log4j.Logger;
 import java.sql.Connection;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
-import java.util.Collections;
 import java.util.List;
 import java.util.Map;
 import java.util.function.Function;
@@ -81,7 +79,7 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
                 ResultSet rs = stmt.executeQuery()) {
             Builder<String> builder = ImmutableList.builder();
             while (rs.next()) {
-                String hiveDatabaseName = rs.getString("NAME");
+                String hiveDatabaseName = getStringResult(rs, "NAME");
                 builder.add(hiveDatabaseName);
             }
             return builder.build();
@@ -103,8 +101,8 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
                 ResultSet rs = stmt.executeQuery()) {
             Builder<String> builder = ImmutableList.builder();
             while (rs.next()) {
-                String hiveDatabaseName = rs.getString("TBL_NAME");
-                builder.add(hiveDatabaseName);
+                String tableName = getStringResult(rs, "TBL_NAME");
+                builder.add(tableName);
             }
             return builder.build();
         } catch (Exception e) {
@@ -141,7 +139,7 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
                 ResultSet rs = stmt.executeQuery()) {
             Builder<String> builder = ImmutableList.builder();
             while (rs.next()) {
-                String hivePartitionName = rs.getString("PART_NAME");
+                String hivePartitionName = getStringResult(rs, "PART_NAME");
                 builder.add(hivePartitionName);
             }
             return builder.build();
@@ -239,7 +237,7 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
                 ResultSet rs = stmt.executeQuery()) {
             Builder<String> builder = ImmutableList.builder();
             while (rs.next()) {
-                builder.add(rs.getString("PART_KEY_VAL"));
+                builder.add(getStringResult(rs, "PART_KEY_VAL"));
             }
             return builder.build();
         } catch (Exception e) {
@@ -348,7 +346,7 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
                 ResultSet rs = stmt.executeQuery()) {
             ImmutableMap.Builder<String, String> builder = 
ImmutableMap.builder();
             while (rs.next()) {
-                builder.put(rs.getString("PARAM_KEY"), 
rs.getString("PARAM_VALUE"));
+                builder.put(rs.getString("PARAM_KEY"), getStringResult(rs, 
"PARAM_VALUE"));
             }
             return builder.build();
         } catch (Exception e) {
@@ -374,10 +372,7 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
             }
 
             List<FieldSchema> fieldSchemas = builder.build();
-            // must reverse fields
-            List<FieldSchema> reversedFieldSchemas = 
Lists.newArrayList(fieldSchemas);
-            Collections.reverse(reversedFieldSchemas);
-            return reversedFieldSchemas;
+            return fieldSchemas;
         } catch (Exception e) {
             throw new HMSClientException("failed to get TablePartitionKeys in 
tableId %s", e, tableId);
         }
@@ -394,7 +389,7 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
                 ResultSet rs = stmt.executeQuery()) {
             ImmutableMap.Builder<String, String> builder = 
ImmutableMap.builder();
             while (rs.next()) {
-                builder.put(rs.getString("PARAM_KEY"), 
rs.getString("PARAM_VALUE"));
+                builder.put(rs.getString("PARAM_KEY"), getStringResult(rs, 
"PARAM_VALUE"));
             }
             return builder.build();
         } catch (Exception e) {
@@ -470,6 +465,15 @@ public class PostgreSQLJdbcHMSCachedClient extends 
JdbcHMSCachedClient {
         return colsExcludePartitionKeys.build();
     }
 
+    private String getStringResult(ResultSet rs, String columnLabel) throws 
Exception {
+        String s = rs.getString(columnLabel);
+        if (rs.wasNull()) {
+            LOG.debug("get `NULL` value of field `" + columnLabel + "`.");
+            return "";
+        }
+        return s;
+    }
+
     @Override
     public List<ColumnStatisticsObj> getTableColumnStatistics(String dbName, 
String tblName, List<String> columns) {
         throw new HMSClientException("Do not support in 
PostgreSQLJdbcHMSCachedClient.");
diff --git 
a/regression-test/data/external_table_p0/hive/jdbc_hive_meta/test_jdbc_hive_orc.out
 
b/regression-test/data/external_table_p0/hive/jdbc_hive_meta/test_jdbc_hive_orc.out
index ca74b31cb20..ff40f80d5e0 100644
--- 
a/regression-test/data/external_table_p0/hive/jdbc_hive_meta/test_jdbc_hive_orc.out
+++ 
b/regression-test/data/external_table_p0/hive/jdbc_hive_meta/test_jdbc_hive_orc.out
@@ -2,54 +2,54 @@
 -- !select_top50 --
 400899305488827731     base tennis pit vertical friday false   tablets 
2019-02-07      \N      7.8723304616937395E17   6.5976813E8     999742610       
[7.53124931825377e+17]  ["NbSSBtwzpxNSkkwga"]   55      \N      
2022-08-19T07:29:58     4       smallint_col    tablets smallint_col
 105493714032727452     how literary    \N      tablets 2020-01-12      
481707.1065     9.8642324410240179E17   6.3322381E8     999613702       []      
["HoMrAnn", "wteEFvIwoZsVpVQdscMb", null, "zcGFmv", "kGEBBckbMtX", 
"hrEtCGFdPWZK"]      49      Unveil bright recruit participate. Suspect 
impression camera mathematical revelation. Fault live2 elbow debt west hydrogen 
current.     2022-09-03T17:20:21     2       boolean_col     tablets boolean_col
-575009259015135910     \N      \N      desktops        2013-03-17      
453810.9551     5.4512431766617229E17   9.0493901E8     998979717       
[5.5663403615529414e+17, 63330505233342272, 3.1009537653752474e+17]     
["VDwZhzTah", "AEGcQbFCNyemU", null, "UfYoRU", "lRNGmphqUUwsVQYVGU", "mVdEZ", 
"LSzhkkcrAmQxP", "BslhNs"]        95      Authority assassination annoy skiing. 
Pleased employ broad crime fortunate punish apartment.    \N      5       
bigint_col      desktops        bigint_col
+575009259015135910     \N      \N      desktops        2013-03-17      
453810.9551     5.4512431766617229E17   9.0493901E8     998979717       
[5.5663403615529414e+17, 6.333050523334227e+16, 3.1009537653752474e+17] 
["VDwZhzTah", "AEGcQbFCNyemU", null, "UfYoRU", "lRNGmphqUUwsVQYVGU", "mVdEZ", 
"LSzhkkcrAmQxP", "BslhNs"]        95      Authority assassination annoy skiing. 
Pleased employ broad crime fortunate punish apartment.    \N      5       
bigint_col      desktops        bigint_col
 603880418542146480     subtle gym farm interval included       false   phones  
2020-01-18      671308.8364     7.0963347087235728E16   2.72213472E8    
998719010       []      ["irMZIDUiOq", null, "IuDJPPTIGDMdQ", null, 
"XmxFGOWLc", "ULHMLLulC", "vqXhvfdFH"]      99      Revival lifelong crawl 
purpose. Regulator scary elbow. Economist mine league bone launch.       
2022-09-03T02:00:12     8       tinyint_col     phones  tinyint_col
-754459379266079664     \N      false   tablets 2019-07-11      733652.7631     
3.2850645569567008E17   5.08661376E8    998617581       
[3.5693025295728045e+17, 7.1714103590147226e+17]        ["lEWHB", 
"nrjkSFzMMSBPLwiT"]   10      Born fundraising sharp cult isolated race. 
Pension1 used opponent edition trustee.      2022-08-30T19:28:59     1       
bigint_col      tablets bigint_col
-636848138056884948     thank issue assassination fork  true    desktops        
2022-08-14      170099.5226     1.3031709761648916E16   9.56856E8       
998442612       [662084635579153.12, 9.5202508425028557e+17, 
6.8547874796067738e+17, 2009792464461647, 7.0130044568537254e+17]  
["vjEpySFbMUMyag", "BZTPdpKLiAbk", "LeRAXjdsgLa", "ftuYwfHsqPNXpgyTHo", 
"XzCIkxluwWqKjyhwjD", "OmkjC", "xNOOEfAJyUWUWlNDjGDO", "taHiDvYdekOigld"]       
32      Distribute sunday beneath especially crystal mentor. Enterprise 
unemployed snow depression green. Sweet [...]
-732069608470626517     massive convincing entity precisely invade      \N      
desktops        2015-12-06      979252.0764     8.3877805956411546E17   
5.9623251E8     997001325       [8.9364082315504947e+17]        \N      48      
Costume rock extensive wooden placement play. Neutral roof domain entertainment 
unveil someone. Beside correctly gallon. Classify meditation jail complaint 
please abolish.     2022-08-26T09:42:16     1       float_col       desktops    
    float_col
+754459379266079664     \N      false   tablets 2019-07-11      733652.7631     
3.2850645569567008E17   5.08661376E8    998617581       
[3.5693025295728045e+17, 7.171410359014723e+17] ["lEWHB", "nrjkSFzMMSBPLwiT"]   
10      Born fundraising sharp cult isolated race. Pension1 used opponent 
edition trustee.      2022-08-30T19:28:59     1       bigint_col      tablets 
bigint_col
+636848138056884948     thank issue assassination fork  true    desktops        
2022-08-14      170099.5226     1.3031709761648916E16   9.56856E8       
998442612       [662084635579153.1, 9.520250842502856e+17, 
6.854787479606774e+17, 2009792464461647, 7.013004456853725e+17]      
["vjEpySFbMUMyag", "BZTPdpKLiAbk", "LeRAXjdsgLa", "ftuYwfHsqPNXpgyTHo", 
"XzCIkxluwWqKjyhwjD", "OmkjC", "xNOOEfAJyUWUWlNDjGDO", "taHiDvYdekOigld"]       
32      Distribute sunday beneath especially crystal mentor. Enterprise 
unemployed snow depression green. Sweet scr [...]
+732069608470626517     massive convincing entity precisely invade      \N      
desktops        2015-12-06      979252.0764     8.3877805956411546E17   
5.9623251E8     997001325       [8.936408231550495e+17] \N      48      Costume 
rock extensive wooden placement play. Neutral roof domain entertainment unveil 
someone. Beside correctly gallon. Classify meditation jail complaint please 
abolish.     2022-08-26T09:42:16     1       float_col       desktops        
float_col
 768862777706807153     allegedly evil lovely   false   tablets \N      
554241.1621     6.074364826499328E17    3.49622816E8    996952097       []      
["rlYNubjGewb", "GlibPXItkVXfCqHIzfF", "ifmwTRnYxOiIy", "oVZTvGtkfiCbjh", 
"HztHxOXyIl"] 58      Strategy steam branch confer. Outsider radiation click 
boot season beach communicate.   2022-08-22T08:11:40     4       float_col      
 tablets float_col
 420927942708721583     training solidarity similarity  false   desktops        
2018-08-26      988855.7929     5.83945915640288E17     9.0464557E8     
996555483       [8.14988510525504e+17]  ["ZFEqYVLAUjEczpPn", "NVTIw", 
"wCnYBqSTiuFozOmxfafI", null]     81      Flood appreciation offering diary. 
Cake comment celebrity processor boy recommend.      2022-08-10T04:45:43     1  
     boolean_col     desktops        boolean_col
-496640756596372260     authentic efficiently shake predator    true    phones  
2018-12-03      719156.1038     8.2488184598939226E17   7.7654016E8     
995559445       [3.0370154940373338e+17, 7.1058600146591091e+17, 
5.523870697300384e+17, 4.6299085569885766e+17, 6.7001514539109235e+17] 
["knnkRrThAETWlKDtn", null, "bhWydMwoQuqgWFyqia", "LmXUNZpGhIOYBZQgz", 
"DPhGDqtqAHDFJlmCbLAn", "yFghgTlk", null]        60      Opinion soccer 
regulation sum firm prejudice. Largely strong educated organize stand.   \N     
 3       float_col       phones  float_col
+496640756596372260     authentic efficiently shake predator    true    phones  
2018-12-03      719156.1038     8.2488184598939226E17   7.7654016E8     
995559445       [3.037015494037334e+17, 7.105860014659109e+17, 
5.523870697300384e+17, 4.6299085569885766e+17, 6.700151453910924e+17]    
["knnkRrThAETWlKDtn", null, "bhWydMwoQuqgWFyqia", "LmXUNZpGhIOYBZQgz", 
"DPhGDqtqAHDFJlmCbLAn", "yFghgTlk", null]        60      Opinion soccer 
regulation sum firm prejudice. Largely strong educated organize stand.   \N     
 3       float_col       phones  float_col
 623416117915767990     \N      false   desktops        2021-01-13      
189213.3634     8.5693376228360768E17   2.83810944E8    995548120       
[8.13564051647795e+17]  []      \N      Library partly argument evaluation pace 
breast. Criminal thereafter dense educator arms.        2022-09-05T15:00:05     
3       float_col       desktops        float_col
-39850937084984262      gap investigate instruct can2   false   tablets 
2022-07-20      719982.8368     \N      2.86086336E8    995547119       
[4.7556700332533555e+17, 3.6441248240169235e+17, 6.92717278190866e+17, 
8.5068031969243622e+17, 3.8655969043505446e+17]  ["rwPIlzMLGzVxezOzg", 
"CLUplJ", "thXF", "tNPD", "qxtAZcbONyrVdtSVshf", "mgjKvIBHPTOkpx", "rKrnVxk", 
"FYbrxCQUGO"]       67      Lane decide illegal banana chamber. Capital 
pressure medal.     2022-09-01T02:09:15     1       tinyint_col     tablets 
tinyint_col
-676410314096484340     clause flee log machine number  \N      desktops        
2015-06-25      148885.7960     5.4213585819745126E17   8.2933288E7     
995328433       [7.9229087257987763e+17, 8.2703650833379558e+17]        
["VEAAL", "tMWGSZkSwjzL", "rBaICQpyFqiEKYAJP", "JIHiNfWZEOZbaijWcoz", 
"HXUZXapTct", "jUcqSS", "DWgSFfuDoYvbb"]  55      Comfort allegedly noble 
equation. Philosophy improve divide dancer breakdown.   2022-09-03T20:36:17     
7       boolean_col     desktops        boolean_col
-329139323170285912     murder rebel such ear front     true    tablets \N      
\N      2.460622878030516E16    4.191344E8      995168790       
[5.0322602630748339e+17]        ["xKlRXvLcsdgEiYEHf"]   97      Gift discovery 
yesterday weather condemn damage. Realm consume robbery december surprised plan 
league. Smoking useful viewer delicate methodology gathering pair. Regardless 
throughout how port. Pencil swallow valuable logical adopt maybe statistic.     
   2022-08-31T18:00:52     8       float_col       tablets float_col
-64458235379408511      \N      true    tablets 2021-12-14      178924.0501     
\N      2.78464512E8    994976337       [6.7366244590619533e+17, 
8.5591107171774963e+17, 6.8121166912315174e+17]        ["OsqHo", 
"FSsynpWBSaEFQQt", "LNYBxPkA", "mqCnnbNiAUCutU", "XprhHSwYvKvlmZaQfIgO", 
"GtHgElaIdmLLsndMoJ", "WvPBq", null] 37      Cost span my garden unity resign. 
Carve last1 anything brutal programming whereas plain. Contact plain website 
language odds drain deadly. Evening newsletter steel elsewhere long-standing 
figure methodology. 2022- [...]
-663343287411312115     yet relax       true    desktops        2022-06-19      
371344.1451     4.8859864838042835E17   9.9466253E8     994723799       
[5.3569236084611917e+17, 9.503022354445399e+17, 3.7718724009399072e+17, 
1.1026878203904256e+17] ["KCfZsewMFUVBvJZKscU", "ztIJBHMAA", "hfLz", null, 
"MSEomldskPu", "pwCR", null, "CwIfrZdWp"]    41      Regardless old-fashioned 
penny congregation. Access palace drain credit neck. Receive middle teens 
reason number. Check dollar lung.    \N      7       int_col desktops        
int_col
+39850937084984262      gap investigate instruct can2   false   tablets 
2022-07-20      719982.8368     \N      2.86086336E8    995547119       
[4.7556700332533555e+17, 3.6441248240169235e+17, 6.92717278190866e+17, 
8.506803196924362e+17, 3.8655969043505446e+17]   ["rwPIlzMLGzVxezOzg", 
"CLUplJ", "thXF", "tNPD", "qxtAZcbONyrVdtSVshf", "mgjKvIBHPTOkpx", "rKrnVxk", 
"FYbrxCQUGO"]       67      Lane decide illegal banana chamber. Capital 
pressure medal.     2022-09-01T02:09:15     1       tinyint_col     tablets 
tinyint_col
+676410314096484340     clause flee log machine number  \N      desktops        
2015-06-25      148885.7960     5.4213585819745126E17   8.2933288E7     
995328433       [7.922908725798776e+17, 8.270365083337956e+17]  ["VEAAL", 
"tMWGSZkSwjzL", "rBaICQpyFqiEKYAJP", "JIHiNfWZEOZbaijWcoz", "HXUZXapTct", 
"jUcqSS", "DWgSFfuDoYvbb"]  55      Comfort allegedly noble equation. 
Philosophy improve divide dancer breakdown.   2022-09-03T20:36:17     7       
boolean_col     desktops        boolean_col
+329139323170285912     murder rebel such ear front     true    tablets \N      
\N      2.460622878030516E16    4.191344E8      995168790       
[5.032260263074834e+17] ["xKlRXvLcsdgEiYEHf"]   97      Gift discovery 
yesterday weather condemn damage. Realm consume robbery december surprised plan 
league. Smoking useful viewer delicate methodology gathering pair. Regardless 
throughout how port. Pencil swallow valuable logical adopt maybe statistic.     
   2022-08-31T18:00:52     8       float_col       tablets float_col
+64458235379408511      \N      true    tablets 2021-12-14      178924.0501     
\N      2.78464512E8    994976337       [6.736624459061953e+17, 
8.559110717177496e+17, 6.812116691231517e+17]   ["OsqHo", "FSsynpWBSaEFQQt", 
"LNYBxPkA", "mqCnnbNiAUCutU", "XprhHSwYvKvlmZaQfIgO", "GtHgElaIdmLLsndMoJ", 
"WvPBq", null] 37      Cost span my garden unity resign. Carve last1 anything 
brutal programming whereas plain. Contact plain website language odds drain 
deadly. Evening newsletter steel elsewhere long-standing figure methodology. 
2022-08- [...]
+663343287411312115     yet relax       true    desktops        2022-06-19      
371344.1451     4.8859864838042835E17   9.9466253E8     994723799       
[5.356923608461192e+17, 9.503022354445399e+17, 3.771872400939907e+17, 
1.1026878203904256e+17]   ["KCfZsewMFUVBvJZKscU", "ztIJBHMAA", "hfLz", null, 
"MSEomldskPu", "pwCR", null, "CwIfrZdWp"]    41      Regardless old-fashioned 
penny congregation. Access palace drain credit neck. Receive middle teens 
reason number. Check dollar lung.    \N      7       int_col desktops        
int_col
 \N     moreover class  \N      tablets 2015-09-08      855610.6494     \N      
\N      994639378       []      [null, "LVlPuTu", "BJRcLDsjyPBgiM", "tYXgzGMr", 
"mafPcmX", "gXsGcqhqIH", "szFDxBGcvML", "UwVJugQgKURgYchUDx"]   82      \N      
2022-08-26T00:16:25     8       boolean_col     tablets boolean_col
-275056213033724461     arrive access   false   desktops        2018-10-03      
252619.5125     3.9353102442374336E16   8.8335142E8     994534648       
[4.9706313273106061e+17, 6.2041444684110042e+17, 7.9479428357356211e+17, 
3.3045269424080678e+17, 3.0402739456761965e+17]        ["QWm", 
"MXYZizChOLneBymZSGou", "LqNwFXvZ", "YKBsSvnhJY", "coUcb", "eLOYYXRSz", 
"ikWSBjo"]      \N      Bishop different used. Globalization trio absolute 
people smell.        2022-09-02T08:42:57     \N      boolean_col     desktops   
     boolean_col
-348028031439811917     consultation believe    false   tablets 2016-08-22      
415339.5028     4.2382370154214624E17   6.8747546E8     994382962       
[3.0086734676548032e+17, 4.8735516725405146e+17, 9.3596536631516083e+17, 
9.1663816035208179e+17]        ["tpiRs", "kKEN", "wpClDVNjnxwe", 
"vHGHkxjqXHIpmevovl"] 65      Many negotiate goodbye have. Associated cruise 
ban philosophy reckon inspection. Mature possess treatment mixed. Affordable 
insert primary expect rock. Disturb pity accident year cute hatred. 
2022-08-07T11:16:09     7       f [...]
-338219472721526956     \N      false   desktops        \N      689199.0771     
7.9466221089006246E17   2.59046112E8    994133872       
[9.0070495056671181e+17, 1.7996775601617808e+17, 20298765261513864, 
180060680264327.75, 2.6825749730073821e+17] ["tZIpUDUW", "rrHPe", null, 
"fgWhtNZ", "uMA", "JuOyGRSsiji", "VkCsMDMDYP", null, "hRO"] 46      Disability 
nevertheless old-fashioned word. Influence commissioner invent adjust 
accordance underwear ceiling. Wander comfort disrupt enquire scholarship 
breathing reputation. Significant monk [...]
-977588954291513457     detention fighting      false   phones  2021-09-07      
817473.6937     1.63251635114689536E17  6.9995917E8     993507340       
[4.946917661433303e+17, 1.3273031316668304e+17, 7.5244240424299174e+17, 
8.7644354739655078e+17] ["LVHOZIzE", "dugMZkZFydCTBh"]  46      Heavily 
decorate profession beloved monster compelling bedroom. Collective publicity 
discount copper throat. Analyst constantly proceedings ultimate advertising. 
Ambition discovery internal angry dirty strongly.     2022-08-15T00:38:02     4 
      boolean_c [...]
-137993334783196500     emergency gaming pump metal slam        \N      phones  
2017-02-13      577513.4432     \N      1.53571424E8    993355824       
[8.1179390476499021e+17, 7.4148037798744269e+17, 7938246732863808]      
["ErSbGzXmodRzRie", "cHSzuVLhEMAf"]     \N      Prosperity printer vitamin 
equipment vision height twin. Traveller stereotype circulate personal little 
cemetery tide.  2022-08-27T18:50:50     7       bigint_col      phones  
bigint_col
-449488952514291370     factor confuse produce nasty    true    desktops        
2021-08-10      560319.8951     8.3623994541438477E17   8.0099328E8     
993292527       [7.083063145462272e+17, 7.5303869026635738e+17, 
5.4587446217583654e+17, 2802338805376948, 6.7811500872898483e+17]       
["EaUMfRbwPP", "ExFBaRK", null, "duOefOehEXtw", "OHtYtKEj", "fvgg"]     17      
Isolated coast body. Bridge initiate until philosophical.       
2022-08-30T06:11:29     3       int_col desktops        int_col
-312372245617770804     formal eight    true    desktops        2021-04-29      
842330.4588     9.2371528807596749E17   2.62728E8       993012822       
[9.83715950101926e+17, 7.529749459101504e+17, 1.31686491596813e+16, 
48034895183293072, 2.1326477477269613e+17]  []      95      Passing consultant 
lecture blast. Let conclude compelling indirect his. Gear sixteen harbour lost 
legislature primary substantially. Aim wear heel coat divert. Enjoyable devise 
arrest.        2022-08-11T12:16:06     2       tinyint_col     desktops        
tinyint_col
-669369990298511963     violence map camping based      true    phones  
2018-05-24      224570.1521     2.85465663177764576E17  7.7835168E8     
992799913       [6.943143080562025e+17, 18479449383053016]      [null, 
"sQupQUoYfeq", "SAkyHKdxXgWZaWac", "dyXYkHocgXXoAh", "TFCuzviyolrwyq", 
"pKsXHIM"]        \N      Distribute following handle. Arms impress threshold 
mild. Export spot connect. Mainstream prosecution fundamental estimate 
clinical. Mess ideological advertising museum fish.  2022-08-24T09:18:53     8  
     bigint_col      phones  bigint_col
+275056213033724461     arrive access   false   desktops        2018-10-03      
252619.5125     3.9353102442374336E16   8.8335142E8     994534648       
[4.970631327310606e+17, 6.204144468411004e+17, 7.947942835735621e+17, 
3.304526942408068e+17, 3.0402739456761965e+17]    ["QWm", 
"MXYZizChOLneBymZSGou", "LqNwFXvZ", "YKBsSvnhJY", "coUcb", "eLOYYXRSz", 
"ikWSBjo"]      \N      Bishop different used. Globalization trio absolute 
people smell.        2022-09-02T08:42:57     \N      boolean_col     desktops   
     boolean_col
+348028031439811917     consultation believe    false   tablets 2016-08-22      
415339.5028     4.2382370154214624E17   6.8747546E8     994382962       
[3.008673467654803e+17, 4.8735516725405146e+17, 9.359653663151608e+17, 
9.166381603520818e+17]   ["tpiRs", "kKEN", "wpClDVNjnxwe", 
"vHGHkxjqXHIpmevovl"] 65      Many negotiate goodbye have. Associated cruise 
ban philosophy reckon inspection. Mature possess treatment mixed. Affordable 
insert primary expect rock. Disturb pity accident year cute hatred. 
2022-08-07T11:16:09     7       floa [...]
+338219472721526956     \N      false   desktops        \N      689199.0771     
7.9466221089006246E17   2.59046112E8    994133872       [9.007049505667118e+17, 
1.7996775601617808e+17, 2.0298765261513864e+16, 180060680264327.75, 
2.682574973007382e+17]      ["tZIpUDUW", "rrHPe", null, "fgWhtNZ", "uMA", 
"JuOyGRSsiji", "VkCsMDMDYP", null, "hRO"] 46      Disability nevertheless 
old-fashioned word. Influence commissioner invent adjust accordance underwear 
ceiling. Wander comfort disrupt enquire scholarship breathing reputation. 
Significant m [...]
+977588954291513457     detention fighting      false   phones  2021-09-07      
817473.6937     1.63251635114689536E17  6.9995917E8     993507340       
[4.946917661433303e+17, 1.3273031316668304e+17, 7.524424042429917e+17, 
8.764435473965508e+17]   ["LVHOZIzE", "dugMZkZFydCTBh"]  46      Heavily 
decorate profession beloved monster compelling bedroom. Collective publicity 
discount copper throat. Analyst constantly proceedings ultimate advertising. 
Ambition discovery internal angry dirty strongly.     2022-08-15T00:38:02     4 
      boolean_col [...]
+137993334783196500     emergency gaming pump metal slam        \N      phones  
2017-02-13      577513.4432     \N      1.53571424E8    993355824       
[8.117939047649902e+17, 7.414803779874427e+17, 7938246732863808]        
["ErSbGzXmodRzRie", "cHSzuVLhEMAf"]     \N      Prosperity printer vitamin 
equipment vision height twin. Traveller stereotype circulate personal little 
cemetery tide.  2022-08-27T18:50:50     7       bigint_col      phones  
bigint_col
+449488952514291370     factor confuse produce nasty    true    desktops        
2021-08-10      560319.8951     8.3623994541438477E17   8.0099328E8     
993292527       [7.083063145462272e+17, 7.530386902663574e+17, 
5.4587446217583654e+17, 2802338805376948, 6.781150087289848e+17] ["EaUMfRbwPP", 
"ExFBaRK", null, "duOefOehEXtw", "OHtYtKEj", "fvgg"]     17      Isolated coast 
body. Bridge initiate until philosophical.       2022-08-30T06:11:29     3      
 int_col desktops        int_col
+312372245617770804     formal eight    true    desktops        2021-04-29      
842330.4588     9.2371528807596749E17   2.62728E8       993012822       
[9.83715950101926e+17, 7.529749459101504e+17, 1.31686491596813e+16, 
4.803489518329307e+16, 2.1326477477269613e+17]      []      95      Passing 
consultant lecture blast. Let conclude compelling indirect his. Gear sixteen 
harbour lost legislature primary substantially. Aim wear heel coat divert. 
Enjoyable devise arrest.        2022-08-11T12:16:06     2       tinyint_col     
desktops        tinyint_col
+669369990298511963     violence map camping based      true    phones  
2018-05-24      224570.1521     2.85465663177764576E17  7.7835168E8     
992799913       [6.943143080562025e+17, 1.8479449383053016e+16] [null, 
"sQupQUoYfeq", "SAkyHKdxXgWZaWac", "dyXYkHocgXXoAh", "TFCuzviyolrwyq", 
"pKsXHIM"]        \N      Distribute following handle. Arms impress threshold 
mild. Export spot connect. Mainstream prosecution fundamental estimate 
clinical. Mess ideological advertising museum fish.  2022-08-24T09:18:53     8  
     bigint_col      phones  bigint_col
 326055487254498364     nowadays pass civic label       false   tablets 
2014-03-07      781120.8462     1.42732445000672288E17  5.5347853E8     
992668782       []      ["nyg"] \N      Make-up every apparently addition 
compute. Long1 official controversy well money devastate lesson.      
2022-08-10T22:14:52     9       bigint_col      tablets bigint_col
-43139399012470413      listen tremendous gut   true    tablets 2014-05-01      
242771.1208     6.0874795006894605E17   6.4972723E8     992075287       
[1.4888694889510467e+17, 1.1624496877076141e+17, 4.9838309536411174e+17, 
9.1944861374577472e+17]        ["zCWydqSmY", "gzGhWxHbzjvucuRMzq", 
"GAPMPbYcQIFxS", "hszicJZUzDPUlCWadWtN", "AOSJfjeJiR", "hfjkZngkLBJxM"]     67  
    Cream feat weekly mystery freedom. Extend absurd beer sleep athlete 
project. Enthusiasm unit disorder. Capable whisper hook communicate.        
2022-08-11T18:00:29     9       bigin [...]
+43139399012470413      listen tremendous gut   true    tablets 2014-05-01      
242771.1208     6.0874795006894605E17   6.4972723E8     992075287       
[1.4888694889510467e+17, 1.162449687707614e+17, 4.9838309536411174e+17, 
9.194486137457747e+17]  ["zCWydqSmY", "gzGhWxHbzjvucuRMzq", "GAPMPbYcQIFxS", 
"hszicJZUzDPUlCWadWtN", "AOSJfjeJiR", "hfjkZngkLBJxM"]     67      Cream feat 
weekly mystery freedom. Extend absurd beer sleep athlete project. Enthusiasm 
unit disorder. Capable whisper hook communicate.        2022-08-11T18:00:29     
9       bigint_ [...]
 911949425639198306     o’clock sentiment theme drop    true    desktops        
2013-05-05      302133.7746     \N      \N      991827409       []      
["TRpHvUaJq", "SnQTsquVURqSDQYctA", "wyKsKxmeKlbVxpWMQTAw", "cEYG", 
"cEqMOPrPfg", "PmhostVgjdH", "kFmrCegIrOl", "XJTNmVfdD", "DZUeOco", 
"jKKmrbrqnuKheN"]       \N      Work revenue chase. Farming suite cut adverse 
campus. Disposal tune dull landmark rejection ally. Event grace voluntary 
acknowledge fit distress. Delight treasure grocery string evoke born.   
2022-08-22T16:00:25     7       smallint_col    deskto [...]
-396070856231408452     ignorance experience couple crush       true    phones  
2015-05-13      812360.3430     9.979261569945737E17    9.1057043E8     
991236722       [6.9043852169663718e+17, 1.074495099529511e+17, 
9.58145113249252e+17, 1.353462997183208e+17, 5.3607139995088506e+17]    \N      
59      Rehabilitation percentage pride tender. Benchmark solve probe crystal 
architect conflict question. Protocol wipe ancient reference trail. Exotic 
traveller identical talented fake load. Entire draw administrator creation 
affection.  2022-09 [...]
+396070856231408452     ignorance experience couple crush       true    phones  
2015-05-13      812360.3430     9.979261569945737E17    9.1057043E8     
991236722       [6.904385216966372e+17, 1.074495099529511e+17, 
9.58145113249252e+17, 1.353462997183208e+17, 5.3607139995088506e+17]     \N     
 59      Rehabilitation percentage pride tender. Benchmark solve probe crystal 
architect conflict question. Protocol wipe ancient reference trail. Exotic 
traveller identical talented fake load. Entire draw administrator creation 
affection.  2022-09- [...]
 887145496628965173     between racist fibre    false   tablets 2021-11-11      
\N      2.33327143660900224E17  \N      991074207       [9.146044424068343e+17, 
4.4065851245243014e+17, 2.714994762482793e+17]  ["bzrpJOEM", 
"PsGUTmchpXsszTlPzOaN", "rivXLjIGLuttFR", "dOeeHNOnca", "ZTsPccW", 
"zgDNEzdEoTYWJOLqcW", "TGrlCBYuzgJ", "lFTJOTWZeuSuaBeIbT", "bCKG", "uqYlh"]     
54      Shake donate therapist scene. Eighteen violence resist next. Courage 
sympathy temperature tide kidnap engage. Together estimate hockey racing 
mobile. Creative [...]
 257952123158816158     treatment music tour ratio      true    phones  
2020-06-07      \N      7.5205980925500122E17   1.24285968E8    990973551       
[3.9083767066960326e+17]        []      92      Lens version fault. Bare 
estimate live1 journal demonstrate. Coordinator openly lady without white 
animation organization. Drown unhappy basket editorial caution prestigious.  
2022-08-15T02:55:27     7       bigint_col      phones  bigint_col
-264342532771407294     busy exam extremely qualification       true    
desktops        2020-11-05      689457.0794     2.83202945069486848E17  
9.6825094E8     990055297       [8.7740186466710413e+17, 
7.3699880175397581e+17, 7.2891532622949082e+17]        ["NNbqHuhMJWqQyJY", 
"auMcHgSfmcTjPFsWk", "EPLgRynwJtyfbDD", "JXpuIGA", "hlgBrRXukCJenxEoYnuS", 
"IHLvsB"]        13      Gang infant consist pull. Pencil aircraft recycle 
exceed involve sand diverse.  2022-08-24T23:20:23     8       int_col desktops  
      int_col
-212691360844244176     furniture expected conceal duo  false   tablets 
2015-10-27      173936.2991     5.5305254019680784E16   2.91214592E8    
989737678       [1.8740700830673674e+17, 8.26144642072196e+17, 
7.0254358170509069e+17, 7.2090724096775821e+17, 8.2513780555372224e+17]  
["EDAk", "EtwcuRqIZpS", "qZzi", "EneMBfJeHBsIkxfCFxuv", "BouCYAoOW", 
"LvUzxAZBzaYiXBfkECI", "egvweRwmIfCZ"]     22      Enter line canal typical 
archive absolutely care. Come straightforward removal up fix. Weak broad immune 
lyric publish. Ourselves  [...]
-861148107399538236     steep operate download framework bean   true    tablets 
2017-09-11      \N      3.9487522718177128E16   8.2829504E8     989556776       
[1.1291426654032322e+17, 1.1282105208845827e+17, 8.6101953368477517e+17, 
4.4123420285917715e+17, 4.7036855003688262e+17]        ["TSEojLqfgoUoyYeO", 
"PmjmvtuoHt", "VYatlwquiRjpqJRiG", "wBWMxkHb", null]       33      Foot 
breakfast regular retreat nasty smash other. Self down high topic practice 
resignation administrative.     2022-09-01T14:37:11     3       tinyint_col     
tablets tinyint_col
-372415973165915438     tradition badly nurse satellite false   tablets 
2014-07-16      191555.6732     7.7552886519944E17      6.7393088E8     
989544553       [2.114505290225689e+17, 1.9787310867757923e+17, 
2.9478388153066368e+17] ["dYaDWpPMCF", "lOsnKKidKGmJeBdiN", "gCWasnndId", null, 
"FecdDiCjSloyfcPYABqJ", "VRoxxXO", "PnUPJhuoUOJRTMlqmxo", "SaJdoCiY"]   33      
Kid composer expected rental split end. Emotionally wonderful counterpart 
metre. Start division drug gang cope naval supermarket. Software lean editorial 
multiple [...]
-448462623900311272     \N      true    tablets 2020-02-12      928095.5454     
6.2670659738407949E17   7.4245421E8     989286745       [1.155409471089488e+17, 
2.0161022044884957e+17, 7.1934979717784243e+17] ["uPmfLkUPP", "AFLoOHT", 
"pDuBnZAIeiTYNbBOu"]   78      Spot sink blame other charge. Cheek have 
thousand beautiful.    2022-08-15T03:51:42     4       float_col       tablets 
float_col
-321336188038349244     next contemplate compromise     true    tablets 
2013-03-15      807203.9008     \N      5.05806176E8    988129246       
[7.4733005320873293e+17]        \N      \N      \N      2022-08-20T14:38:27     
\N      smallint_col    tablets smallint_col
+264342532771407294     busy exam extremely qualification       true    
desktops        2020-11-05      689457.0794     2.83202945069486848E17  
9.6825094E8     990055297       [8.774018646671041e+17, 7.369988017539758e+17, 
7.289153262294908e+17]   ["NNbqHuhMJWqQyJY", "auMcHgSfmcTjPFsWk", 
"EPLgRynwJtyfbDD", "JXpuIGA", "hlgBrRXukCJenxEoYnuS", "IHLvsB"]        13      
Gang infant consist pull. Pencil aircraft recycle exceed involve sand diverse.  
2022-08-24T23:20:23     8       int_col desktops        int_col
+212691360844244176     furniture expected conceal duo  false   tablets 
2015-10-27      173936.2991     5.5305254019680784E16   2.91214592E8    
989737678       [1.8740700830673674e+17, 8.26144642072196e+17, 
7.025435817050907e+17, 7.209072409677582e+17, 8.251378055537222e+17]     
["EDAk", "EtwcuRqIZpS", "qZzi", "EneMBfJeHBsIkxfCFxuv", "BouCYAoOW", 
"LvUzxAZBzaYiXBfkECI", "egvweRwmIfCZ"]     22      Enter line canal typical 
archive absolutely care. Come straightforward removal up fix. Weak broad immune 
lyric publish. Ourselves can [...]
+861148107399538236     steep operate download framework bean   true    tablets 
2017-09-11      \N      3.9487522718177128E16   8.2829504E8     989556776       
[1.1291426654032322e+17, 1.1282105208845827e+17, 8.610195336847752e+17, 
4.4123420285917715e+17, 4.703685500368826e+17]  ["TSEojLqfgoUoyYeO", 
"PmjmvtuoHt", "VYatlwquiRjpqJRiG", "wBWMxkHb", null]       33      Foot 
breakfast regular retreat nasty smash other. Self down high topic practice 
resignation administrative.     2022-09-01T14:37:11     3       tinyint_col     
tablets tinyint_col
+372415973165915438     tradition badly nurse satellite false   tablets 
2014-07-16      191555.6732     7.7552886519944E17      6.7393088E8     
989544553       [2.114505290225689e+17, 1.9787310867757923e+17, 
2.947838815306637e+17]  ["dYaDWpPMCF", "lOsnKKidKGmJeBdiN", "gCWasnndId", null, 
"FecdDiCjSloyfcPYABqJ", "VRoxxXO", "PnUPJhuoUOJRTMlqmxo", "SaJdoCiY"]   33      
Kid composer expected rental split end. Emotionally wonderful counterpart 
metre. Start division drug gang cope naval supermarket. Software lean editorial 
multiple  [...]
+448462623900311272     \N      true    tablets 2020-02-12      928095.5454     
6.2670659738407949E17   7.4245421E8     989286745       [1.155409471089488e+17, 
2.0161022044884957e+17, 7.193497971778424e+17]  ["uPmfLkUPP", "AFLoOHT", 
"pDuBnZAIeiTYNbBOu"]   78      Spot sink blame other charge. Cheek have 
thousand beautiful.    2022-08-15T03:51:42     4       float_col       tablets 
float_col
+321336188038349244     next contemplate compromise     true    tablets 
2013-03-15      807203.9008     \N      5.05806176E8    988129246       
[7.473300532087329e+17] \N      \N      \N      2022-08-20T14:38:27     \N      
smallint_col    tablets smallint_col
 598162529085799203     ugly smash      \N      phones  2014-08-20      
550275.2557     5.977672985795881E17    \N      987478218       
[7.74535081898372e+17, 1.815794304143369e+17]   ["CCWplUlBg", "QWcgjHzWhG", 
"sWhqlI", "ESGYsWpUCA"]     70      Occurrence shower double. Interactive duty 
positive assess attain circumstance. Regime unhappy genre sheep marketing 
assert. Flag persuade district acknowledge regulate encouraging criterion. 
Voting engage break multiply.   2022-08-10T20:25:03     \N      boolean_col     
phones  boolean_col
-163333247606351459     \N      true    tablets 2015-02-02      829923.8961     
5.2763199707000384E17   9.1720755E8     987470977       
[5.9909779852457741e+17, 7.2692919376306035e+17, 3.6941342971354982e+17, 
5.862745930336576e+17] ["Ilo", "iyltFdsgVLds", "bNn", "YvENgCixRZVoeWUabk"]    
42      Pair backing competitor dig. Whenever sketch programming outlet cease 
sack standing. Monster response protocol worship scared. Classical govern 
female. 2022-08-13T23:11:22     8       tinyint_col     tablets tinyint_col
-129268823222240972     mile determination      false   tablets 2019-01-06      
604701.7592     8.6075266796586701E17   \N      987329394       
[3.1078810412278368e+17, 7.3542127312740134e+17]        \N      20      Despite 
bail including. Conventional circumstance fence story step. Ceremony belt 
humour reputation. Infrastructure easy toilet my dollar premise supermarket. 
Sword mass restaurant yesterday interference spring exit.        
2022-09-02T01:03:22     \N      boolean_col     tablets boolean_col
+163333247606351459     \N      true    tablets 2015-02-02      829923.8961     
5.2763199707000384E17   9.1720755E8     987470977       [5.990977985245774e+17, 
7.269291937630604e+17, 3.694134297135498e+17, 5.862745930336576e+17]    ["Ilo", 
"iyltFdsgVLds", "bNn", "YvENgCixRZVoeWUabk"]    42      Pair backing competitor 
dig. Whenever sketch programming outlet cease sack standing. Monster response 
protocol worship scared. Classical govern female. 2022-08-13T23:11:22     8     
  tinyint_col     tablets tinyint_col
+129268823222240972     mile determination      false   tablets 2019-01-06      
604701.7592     8.6075266796586701E17   \N      987329394       
[3.107881041227837e+17, 7.354212731274013e+17]  \N      20      Despite bail 
including. Conventional circumstance fence story step. Ceremony belt humour 
reputation. Infrastructure easy toilet my dollar premise supermarket. Sword 
mass restaurant yesterday interference spring exit.        2022-09-02T01:03:22  
   \N      boolean_col     tablets boolean_col
 840144213771116088     coincidence overall consideration ingredient    true    
tablets 2015-02-07      930874.4553     3.5566725998016077E17   2.20893872E8    
987289606       [6.498773865161129e+17, 4.8237070793227654e+17] 
["aOVKyZKSfDIwlYH", "gbNUFCO", "bPEvtAYjXdKXmd"]        79      Shore parental 
powerful. Protection foreign firm sanction pressure. Current mechanism guilty 
choose instruction delegation prepare. Rival sugar kidney hit lab admit 
proceed.   2022-08-20T20:08:01     1       int_col tablets int_col
 868449561086137157     staff reasonably platform scholar circulate     true    
desktops        2016-08-28      326501.8514     4.8678626719734816E17   
5.7386643E8     987241408       [2.2132500254258102e+17, 
1.6095855062087562e+17, 7.395204232644439e+17, 4.6493367683013286e+17] 
["KPKOmTVFMnSbWfx", "YtavgHAkPskCc", "uiyXC", "PAuDfkJdhO", "ATRGGAWNGJ"]       
46      Find careless however invention adoption. Arbitrary open neglect. 
Friend embarrassment amid density possess operational qualified. Angle novel 
mean. Inflation depth reporting  [...]
 882759368495896161     grace fair hidden trail true    phones  2017-01-08      
591251.5881     9.1284571965376384E17   8258863.5       987011098       
[3.553412039578169e+17] ["sUBpYeEjXLku", "KoDTVscoRkVO", "qhNYa", "EBXmZ", 
null, "HCvQtRQRCOzIzjO", "YnHK", "JAge", "FKlfYoFQzUiZYap"]  68      \N      
2022-08-15T19:05:15     5       tinyint_col     phones  tinyint_col
-498867943145833747     transportation absurd warfare   false   desktops        
2017-05-23      850871.2292     6.8335729823235059E17   \N      986830519       
[4.226899791754336e+17, 4.7095064399080653e+17] ["xNECmu", "uwyfpikWGfxM", 
"TVZNMxVfiSXJTWsvZS", "UqXajVrdjqdPzOGz", "RCivZjW", "vXMVwjkMiO"]   25      
Conventional investigate thanks instance rhetoric. Limb firstly resident 
fantastic employee tall.       2022-08-09T13:57:55     8       bigint_col      
desktops        bigint_col
-518479261183178454     raise cope      true    phones  \N      467983.1687     
1.32328604302364368E17  1.0965992E7     986812276       
[6.8375952419669158e+17]        ["licAlaF"]     12      Metaphor brush fraud 
needle confidence never hook. Test tent objection connection governance similar 
born. Threshold superior alarm aftermath. Poison all laughter.     
2022-08-15T13:41:09     4       int_col phones  int_col
-966965240896174962     \N      false   phones  2015-11-10      753918.3430     
1.9757531555380768E17   3.12841216E8    986681839       
[2.2531448753722371e+17, 68934654326404336]     ["pPnGKupbrjtZUZMjCB", "ywuw", 
"rBhhKpTErtoep", "zswxiCFDXslBJGoG", "VoGkC"]    72      Pack aim rip engage 
fixture. Broadcast roughly smooth. Acute establish hurricane architectural 
correction chairman weather.     2022-08-09T05:35:56     4       bigint_col     
 phones  bigint_col
-882634950713305211     extent gas hint coordinate      false   phones  
2016-07-14      295070.2219     7.0741662914685082E17   1.8774816E7     
986641435       [8.0321866928608115e+17, 7.4137236509302656e+17, 
1.5073113715907139e+17, 7.8313495728948659e+17]        []      77      
Guideline religious vice. Ghost excuse county derive. Glance military panel 
unveil. Joke lost survival most as. 2022-08-08T00:40:09     \N      boolean_col 
    phones  boolean_col
+498867943145833747     transportation absurd warfare   false   desktops        
2017-05-23      850871.2292     6.8335729823235059E17   \N      986830519       
[4.226899791754336e+17, 4.709506439908065e+17]  ["xNECmu", "uwyfpikWGfxM", 
"TVZNMxVfiSXJTWsvZS", "UqXajVrdjqdPzOGz", "RCivZjW", "vXMVwjkMiO"]   25      
Conventional investigate thanks instance rhetoric. Limb firstly resident 
fantastic employee tall.       2022-08-09T13:57:55     8       bigint_col      
desktops        bigint_col
+518479261183178454     raise cope      true    phones  \N      467983.1687     
1.32328604302364368E17  1.0965992E7     986812276       [6.837595241966916e+17] 
["licAlaF"]     12      Metaphor brush fraud needle confidence never hook. Test 
tent objection connection governance similar born. Threshold superior alarm 
aftermath. Poison all laughter.     2022-08-15T13:41:09     4       int_col 
phones  int_col
+966965240896174962     \N      false   phones  2015-11-10      753918.3430     
1.9757531555380768E17   3.12841216E8    986681839       [2.253144875372237e+17, 
6.893465432640434e+16]  ["pPnGKupbrjtZUZMjCB", "ywuw", "rBhhKpTErtoep", 
"zswxiCFDXslBJGoG", "VoGkC"]    72      Pack aim rip engage fixture. Broadcast 
roughly smooth. Acute establish hurricane architectural correction chairman 
weather.     2022-08-09T05:35:56     4       bigint_col      phones  bigint_col
+882634950713305211     extent gas hint coordinate      false   phones  
2016-07-14      295070.2219     7.0741662914685082E17   1.8774816E7     
986641435       [8.032186692860812e+17, 7.413723650930266e+17, 
1.507311371590714e+17, 7.831349572894866e+17]    []      77      Guideline 
religious vice. Ghost excuse county derive. Glance military panel unveil. Joke 
lost survival most as. 2022-08-08T00:40:09     \N      boolean_col     phones  
boolean_col
 86980633188107783      email senator speculate anything swim   true    tablets 
2015-06-26      760440.5681     7.5548400246108992E17   6.3851021E8     
986349337       []      ["RJGkpBfoNE", "jpQoLfYrI", "gOgkBQUg", "QBs", "IrHb", 
"AazarmoPsX", "AAxTPdvLHpP", "JPx"]      72      Relation ninety know cloud 
hate terminal egg. Extreme ticket detail domain acknowledge complain live1. 
Dedicated hair escape.   2022-08-07T19:11:47     5       int_col tablets int_col
 88457348565826264      \N      true    phones  2022-08-22      140717.2626     
5.177242499015833E17    3.8514276E7     986333570       []      ["PWCCGPfT"]    
71      Football stumble result taste pleased midst. Mirror loyal divide. 
Ultimately injury chip lawyer. Leadership teacher belong.     
2022-08-26T19:19:31     4       smallint_col    phones  smallint_col
-683875991736989008     split terrify   \N      tablets 2015-11-04      
390407.1015     \N      6.0774349E8     986131998       
[6.6301721738494848e+17]        [null, "lSQFYzUG", "vMVMwfZzpl", "QRFiYUUefBc", 
"VdtTHy", "YrPtPPzynqXCCzm", "LfIgQvGimBBzlgn"] 21      Weird period none. 
Assertion coincide college. Subscriber fridge craft. Poisonous donation 
ordinary. Explode village debt.      2022-08-27T01:05:20     3       
tinyint_col     tablets tinyint_col
+683875991736989008     split terrify   \N      tablets 2015-11-04      
390407.1015     \N      6.0774349E8     986131998       [6.630172173849485e+17] 
[null, "lSQFYzUG", "vMVMwfZzpl", "QRFiYUUefBc", "VdtTHy", "YrPtPPzynqXCCzm", 
"LfIgQvGimBBzlgn"] 21      Weird period none. Assertion coincide college. 
Subscriber fridge craft. Poisonous donation ordinary. Explode village debt.     
 2022-08-27T01:05:20     3       tinyint_col     tablets tinyint_col
 
 -- !count_all --
 desktops       bigint_col      188     186     181     193     182     192     
180     187     174     180     184     206     206     180     512     936


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org


Reply via email to